search
HomeOperation and MaintenanceMac OSIntroduction to common terminal commands under mac
Introduction to common terminal commands under macJan 26, 2021 am 10:03 AM
macOrderterminal

Introduction to common terminal commands under mac

First of all, let me introduce absolute paths and relative paths.

(Learning video sharing: Introduction to Programming)

Absolute path

As we all know, when we usually use computers, we need to find the files we need. The location of the file must be known, and the way to indicate the location of the file is the path. For example, as long as we see this path: c:/website/img/photo.jpg, we will know that the photo.jpg file is img in the website directory of the c drive. in the subdirectory. In this way, the path that completely describes the file location is an absolute path. We don't need to know any other information to determine the location of the file based on the absolute path. (It can also be considered that everything starting with "/" is an absolute path)

Relative path

The so-called relative path, as the name suggests, is relative to the target location. No matter where you put these files, as long as their relative relationship does not change, there will be no error.​ In addition, we use "../" to represent the upper-level directory, "../../" to represent the upper-level directory, and so on. (It can also be considered that all paths that do not start with "/" are relative paths)

Give a chestnut

Example 1
For example, there are two files in the ABC folder of your C drive 1 and 2 (they are both under the ABC file), if you want file 1 to tell the location of file 2
(that is, the path), then it has two representation methods:

1. Absolute path: C:\ABC\2
Because it indicates that file 2 is under the ABC file on drive C, starting from the largest directory on drive C.
2. Relative path: 2
Because file 1 and file 2 are both Under C:\ABC, so the "C:\ABC" in front of their paths are the same, so there is no need to show it.
Example 2
For example, the ABC folder on the C drive has 1 file and another DEF folder, and there are 2 files 1 and 2 under the DEF file. The file paths are:
(both absolute paths)
C:\ABC\1
C:\ABC\DEF\2
If file 1 is used to represent the path of file 2
* Absolute path: C:\ABC\DEF\2
* Relative path: DEF\2 (because C:\ABC in front of files 1 and 2 If this path is the same, there is no need to write it out).

Commonly used mac terminal operation command commands

1. Display the path of the current directory

Display the path of the current directory (allowing you to view the current path in real time)
pwd copy code

2. View the contents of the current directory (allowing you to view the contents of the current path in real time)

ls parameter directory name
Parameters: - w displays Chinese, -l details, -a includes hidden files,
If each line starts with "d", it is a folder, and if it starts with "-", it is a file.
LS Display all files or folders in the current directory
LS directory displayed in all files or folders in this directory
LS space -A display hidden file
LS spaces- l Display detailed information in the current directory
ls space -R Display subdirectory files in the current directory
ls space -w Display Chinese files in the current directory
ls space -la Display all files
Example: Take a look What is in the driver directory: ls /System/Library/Extensions

3. Switching paths (also called conversion directories) means going from one path to another path

cd directory name
cd . cd ../.. /. . Represents that returning the previous three -level directory
CD space The next directory indicates that it will enter the next directory from the current path
CD space ~ indicate from the current directory to the user root directory
CD space / indicate from the current directory from the current directory Enter the root directory
cd Space ./ means entering from the current directory to the current directory (a dot "." indicates the current)
Example: I want to take a walk in the driver directory: cd /System/Library/Extensions


4. Create a new directory (can also be understood as creating a folder)

mkdir directory name
mkdir space folder name means creating a folder
mkdir space absolute path means creating a folder with the same function as above,
except that the above is created through a relative path, below It is created through an absolute path.
Example: Create a backup directory backup under the driver directory: mkdir /System/Library/Extensions/backup

5. Delete the directory (can also be understood as deleting files Folder)

rmdir directory name
rmdir space folder name means deleting a folder
rmdir space absolute path means deleting a folder The function is the same as the above, except that the above is deleted through a relative path ,The following is deletion through absolute path
Example: Delete a file called new on the desktop MacBook-Air:Desktop admin$ rmdir new

6. Create a new file

touch File name
Example: Create a backup file backup in the current directory: touch backup.txt

7. Delete file

rm Parameter file parameter-rf Represents recursion and force , be sure to use it with caution, if you execute rm -rf /
your system will be gone
rm spaces file name and format means deleting a file
rm -r folder means forced deletion of the folder Folder containing files
(When the folder contains files, the folder cannot be deleted by using "rmdir space folder name". You can only force deletion by using "rm -f folder name")
rm -rf folder means forcibly deleting the folder containing files in the folder
(Same function as "rm -r folder name")
Note: rm can delete multiple files instead of just one file , but the paths of the two files must be separated by spaces.
Example: Want to delete the driver cache: rm -rf /System/Library/Extensions.kextcache rm -rf /System/Library/Extensions.mkext

8. Copy

cp parameter source file target file
Example: I want to copy the Natit.kext of the desktop to the driver directory cp -R /User/username/Desktop/Natit. kext /System/Library/Extensions
Parameter R indicates recursive operation on the directory. kext looks like a file in the graphical interface, but is actually a folder.
Back up all files in the driver directory to desktop backup: cp -R /System/Library/Extensions/
/User/username/Desktop/backup

9. Move files And rename the file

mv source file target file
mv the path to which the file or folder needs to be moved (the path here can be a relative path or an absolute
path);mv a.c space b.c means rename a.c to b.c
Example: want to move AppleHDA.Kext to the desktop:
mv /System/Library/Extensions/AppleHDA.kext /User/username/Desktop

10. Text editing

vim file name
vim file name indicates the content of the edited file
Example:
vim /System/Library/Extensions/Natit.kext/Info.plist
After editing, use Ctrl + O to save, Ctrl + ## * Input in "command mode":
:w Save the current file
:q Exit editing, if the file is not saved, you need to use force mode
:q! Force exit without saving changes
: wq combine commands, save and exit
* Move in "command mode":
h left
j down
k up
l right


11. Clear screen

clear

12. Open a file, folder or application


open

* If it is open, it will open the current command Directory, if you want to open the specified folder or file, the format is open and the path to be opened can be used. (Both absolute paths or relative paths are acceptable here)

* The open command can open applications in the terminal, and -n can be used to open multiple identical applications. For example, you can use the following command to open a new Safari window

open -n /Applications/Safari.app/



Related recommendations:
macos system

The above is the detailed content of Introduction to common terminal commands under mac. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金. If there is any infringement, please contact admin@php.cn delete
ip与mac绑定什么意思ip与mac绑定什么意思Mar 09, 2023 pm 04:44 PM

ip与mac绑定是指将特定的IP地址与特定的MAC地址关联起来,使得只有使用该MAC地址的设备才能够使用该IP地址进行网络通信。ip与mac绑定可以防止被绑定的主机的IP地址不被假冒,前提条件:1、MAC地址是唯一的,并且不可假冒;只能绑定与路由器直接相连的网络上的主机(也就是主机的网关在路由器上)。

mac版下载是什么意思mac版下载是什么意思Mar 06, 2023 am 09:52 AM

mac版下载的意思是当软件在选择安装时,选择MAC版下载;Windows版和MAC版是两个不同的操作系统,所以大多数软件在选择安装的同时需要选择Windows版还是MAC版。

mac鼠标滚轮相反怎么办mac鼠标滚轮相反怎么办Mar 16, 2023 pm 05:44 PM

mac鼠标滚轮相反的解决办法:1、打开mac电脑,点击屏幕的苹果标志,然后选择“系统偏好设置”;2、在“系统偏好设置”窗口中,选择“鼠标”;3、在“鼠标”窗口中,将“滚动方向:自然”前面的勾去掉即可。

如何防止 Mac 在显示器关闭时进入睡眠状态 (MacOS Ventura)如何防止 Mac 在显示器关闭时进入睡眠状态 (MacOS Ventura)Apr 13, 2023 pm 12:31 PM

显示器关闭时如何防止 Mac 休眠如果您希望 Mac 显示器能够在整个计算机不进入睡眠状态的情况下关闭,请在此处进行适当的设置调整:下拉  Apple 菜单并转到“系统设置”转到“显示”点击“高级...”切换“防止显示器关闭时电源适配器自动休眠”的开关现在 Mac 显示屏可以关闭,同时防止 Mac 本身进入睡眠状态。这可能主要与 Mac 笔记本电脑用户相关,但即使是那些没有 MacBook 的用户也可能会发现该功能很有用。

修复文件共享在 MacOS Ventura 中不起作用修复文件共享在 MacOS Ventura 中不起作用Apr 13, 2023 am 11:34 AM

修复 SMB 文件共享在 MacOS Ventura 中不起作用的问题从  Apple 菜单打开 Mac 上的“系统设置”应用程序转到“常规”,然后转到“共享”找到“文件共享”的开关并将其关闭通过转到  Apple 菜单并选择重新启动来重新启动 Mac重新启动后,返回共享系统设置面板并将“文件共享”重新设置为打开位置像往常一样恢复文件共享,它应该按预期工作如果 MacOS Ventura Mac 与另一台 Mac 或设备之间的文件共享突然再次停止工作,您可能需要在几天后或随机重复此过程。

mac的shift键是哪个键mac的shift键是哪个键Mar 13, 2023 pm 02:20 PM

mac的shift键是fn键上方、caps lock键下方的一个键,该键在键盘最左侧,由右下往上数第2个键;shift键是键盘中的上档转换键,可以通过“Ctrl+Shift”组合键来切换输入法。

mac克隆是什么意思mac克隆是什么意思Jan 31, 2023 am 10:33 AM

mac克隆全称mac地址克隆,是固化在网卡上串行EEPROM中的物理地址,通常有48位长。mac克隆一般应用在路由器上,用户在用电脑直接拨号上网,后来又加了个路由器,通过路由器来实现多台电脑同时上网,这时要用到mac地址克隆了,就是把当前的电脑的mac地址克隆到路由器中去,因为运营商是把你的电脑mac地址绑定你的账号的,所以得克隆以后才能用。

mac解压rar用什么软件mac解压rar用什么软件Mar 03, 2023 pm 04:18 PM

mac解压rar的软件:1、The Unarchiver,是一款完全免费、小巧,而且非常易于使用的压缩、解压缩小工具;2、Keka,是一款免费、实用的压缩、解压缩工具,支持解压缩RAR格式的压缩包;3、360压缩大师,是一款免费的压缩、解压缩软件,完全支持RAR文件解压;4、MacZip,支持包括RAR在内的超过20种压缩格式的解压;5、BetterZip;6、FastZip。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software