[[183871]] Heavy technology Preface In the process of iOS development, pay more attention to the efficiency of iOS development. Being proficient in using the common commands of Mac terminal operations can help you better handle the heavy iOS development. This article focuses on the commonly used basic commands and shortcut keys of Mac terminal, which is more suitable for some iOS novices to learn and understand. Mac OS X File System - Mac OS X itself is based on Unix kernel, adopts Unix multi-user system, adopts Unix file system, all files are placed under the root directory /Users, there is no concept of drive letter under Windows, after the user logs in to the system, his user directory generally has public, pictures, manuscripts, downloads, music, movies, sites, desktop, resource library, OS X has been internationalized for Chinese users, open the terminal, enter ls, you will see the real directory name: Desktop, Documents, Downloads, Library, Movies, Music, Pictures, Public, Sites. Continue to enter cd / in the terminal, switch to the root directory, type ls, so that you can basically see the full picture of the Unix directory.
As shown in the following figure: Terminal screenshot - Among them, some common file locations are as follows:
1. Driver location/Systme/Library/Extensions; 2. The location of the desktop is /User/username/Desktop; 3. The file wildcard is asterisk * 4. In Unix systems, uppercase and lowercase characters are distinguished. A.txt is not equal to a.txt. The root directory symbol / is not optional. cd /System means to go to the root directory. System, and cd System means go to the System in the current directory. Basic commands commonly used in Mac terminal - List files: ls parameter directory name Example: View the driver directory: ls/System/Library/Extensions, (parameter -w displays Chinese, -l detailed information, -a includes hidden files);
- Change directory: cd For example: change to the driver directory cd /System/Library/Extensions;
- Create a new directory: mkdir directory name. For example, create a backup directory backup in the driver directory, mkdir /System/Library/Extensions/backup;
- Create a backup directory backup on the desktop, mkdir /User/username/Desktop/backup;
- Copy file: cp parameter source file target file Example: If you want to copy Natit.kext on the desktop to the driver directory, cp -R /User/username/Desktop/Natit.kext /System/Library/Extensions; the parameter R means recursive operation on the directory. kext looks like a file in the graphical interface, but it is actually a folder.
- Back up all files in the driver directory to the desktop backup
- cp -R /System/Library/Extensions/* /User/username/Desktop/backup;
- Delete file: rm parameter file example: if you want to delete the driver cache rm -rf /System/Library/Extensions.kextcache, rm -rf /System/Library/Extensions.mkext, the parameter -rf means recursion and force, and your system will be paralyzed after executing rm -rf /;
- Move files: mv file, for example: if you want to move AppleHDA.Kext to the desktop, mv /System/Library/Extensions/AppleHDA.kext /User/username/Desktop,
- Want to move AppleHDA.Kext to the backup directory mv /System/Library/Extensions/AppleHDA.kext /System/Library/Extensions/backup;
- Text editor: nano File name Example: Edit natit Info.plist nano /System/Library/Extensions/Natit.kext/Info.plist;
- Directory Operations:
Command Name | Functional Description | Usage Examples |
---|
mkdir | Create a Directory | mkdir dirname | rmdir | Deleting a Directory | rmdir dirname | mvdir | Move or rename a directory | mvdir dir1 dir2 | cd | Change the current directory | cd dirname | pwd | Display the pathname of the current directory | pwd | ls | Display the contents of the current directory | ls -la |
Command Name | Functional Description | Usage Examples |
---|
cat | Display or connect to a file | cat filename | od | Display the contents of non-text files | od -c filename | cp | Copying a file or directory | cp file1 file2 | rm | Deleting a file or directory | rm filename | mv | Change the file name or directory | mv file1 file2 | find | Find files using a matching expression | find . -name “*.c” -print | file | Display file types | file filename |
Command Name | Functional Description | Usage Examples |
---|
head | Display the first few lines of a file | head -20 filename | tail | Display the last few lines of a file | tail -15 filename | cut | Display certain fields in each line of a file | cut -f1,7 -d: /etc/passwd | colrm | Remove several columns from standard input | colrm 8 20 file2 | diff | Compare and display the differences between two files | diff file1 file2 | sort | Sort or merge files | sort -d -f -u file1 | uniq | Remove duplicate lines from a file | uniq file1 file2 | comm | Display the common and non-common lines of two ordered files | comm file1 file2 | wc | Count characters, words and lines in a file | wc filename | nl | Add line numbers to files | nl file1 >file2 |
Command Name | Functional Description | Usage Examples |
---|
ps | Display the current status of the process | ps u | kill | Terminate a process | kill -9 30142 |
Command Name | Functional Description | Usage Examples |
---|
date | Displays the current date and time of the system | date | cal | Show Calendar | cal 4 2016 | time | Statistics of program execution time | time a.out |
- Network and communication operations:
Command Name | Functional Description | Usage Examples |
---|
telnet | Remote login | telnet hpc.sp.net.edu.cn | rlogin | Remote login | rlogin hostname -l username | rsh | Execute the specified command on the remote host | rsh f01n03 date | ftp | Transfer files between local and remote hosts | ftp.sp.net.edu.cn | rcp | Copy files between local and remote hosts | rcp file1 host1:file2 | mail | Read and send emails | mail | write | Send a message to another user | write username pts/1 | mesg | Allow or deny receiving messages | mesg n | ping | Send an echo request to a network host | ping hpc.sp.net.edu.cn |
Command Name | Functional Description | Usage Examples |
---|
history | List the most recently executed commands and their numbers | history | r | Repeat the most recently executed command | r -2 | alias | Define an alias for a command | alias del=rm -i | unalias | Undefine an alias | unalias del | rcp | Copy files between local and remote hosts | rcp file1 host1:file2 | mail | Read and send emails | mail | write | Send a message to another user | write username pts/1 | mesg | Allow or deny receiving messages | mesg n |
Command Name | Functional Description | Usage Examples |
---|
uname | Display information about the operating system | uname -a | clear | Clear the screen or window contents | clear | alias | Define an alias for a command | alias del=rm -i | unalias | Undefine an alias | unalias del | who | Displays all currently set environment variables | who | whoami | Displays the user name currently performing the operation | whoami | tty | Display the name of the terminal or pseudo-terminal | tty | du | Query disk usage | du -k subdir | stty | Display or reset control key definitions | stty -a | df/tmp | Displays the total and available space on the file system | - | w | Displays a summary of current system activity | - |
Method 1: show Enter the following command in Terminal: chflags nohidden ~/Library/; hide Enter the following command in Terminal: chflags hidden ~/Library/; Method 2: Open Finder, select Go from the menu and hold down the option key to display the library item (you need to repeat this operation each time you open it). - Finder shows hidden files
Show hidden files Enter the following command in Terminal: defaults write com.apple.finder AppleShowAllFiles -bool true killall Finder; Recover hidden files Enter the following command in Terminal: defaults write com.apple.finder AppleShowAllFiles -bool false killall Finder. Enter the following command in Terminal: sudo /Library/uninstall-devtools –mode=all The actual installation directory. By default, Xcode is installed in the /Developer directory. You can execute sudo /Developer/Library/uninstall-devtools –mode=all; - Show full path in Finder title bar
Enter the following command in Terminal: defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES killall Finder Remove the shadow of the window screenshot When you take a screenshot of a window (Command-Shift-4, Spacebar), a shadow will be automatically added around the image. If you don't like the effect of the shadow, you can turn it off. Enter the following command in Terminal: defaults write com.apple.screencapture disable-shadow -bool true killall SystemUIServer; - Force Safari to open web pages in new tabs
Safari supports tabbed browsing by default. However, when we click on a link on a page or in other applications, Safari often opens a new window, resulting in too many Safari windows on the page and making it difficult to manage. With the following tips, We can set Safari to open web pages in a new tab by default. Enter the following command in Terminal: defaults write com.apple.Safari TargetedClicksCreateTabs -bool true; - Change the location where screenshots are saved
Mac OS provides a very convenient screenshot shortcut key, which allows us to quickly take screenshots of the entire screen, part of the screen, or an application window. However, this screenshot function has a shortcoming, that is, the screenshot can only be saved to the desktop. If we take a lot of screenshots, it will make the desktop look very messy. Is there a way to change the default save location of the screenshots? Yes. The method is very simple, just enter the following command in the "Terminal". defaults write com.apple.screencapture location storage location killall SystemUIServer; When entering the command, just replace the "storage location" with the actual folder. For example, if you want to store the files in the Screenshots folder in your user directory, enter defaults write com.apple.screencapture location ~/Screenshots; Commonly used shortcut keys in Mac - Command+Tab Switch applications in any case – cycle forward
- Shift+Command+Tab Switch applications – Cycle backwards
- Command+Delete Move the selected resource to the Trash
- Shift+Command+Delete Empty the Trash of the related program
- Command+` Switch between multiple windows of the same application
- Command+F brings up the search function of most applications
- Command+C/V/X Copy/Paste/Cut
- Command+N Create a new application window
- Command+Q exits the current application. To explain, there are three small icons in red, yellow and green in the upper left corner of all application interfaces. Click the green one to expand to the most suitable window size, the yellow one to minimize, and the red one to close the current window, but it does not exit the program.
- The quickest way to close an application is to use Command+Q in conjunction with Command+Tab.
- Command+L When the current program is a browser, you can directly locate the address bar
- Command+”+/-” to increase or decrease the font size
- Control+Eject key displays the shutdown dialog
- Control+Space to call out Spotlight
- Command+Space Switch input method
Final Thoughts - Each terminal development cannot be limited to the development tool IDE. Often some operations of the operating system will bring unexpected surprises. I hope you will experience it carefully. If you want to learn about the common operations of the Mac system, I recommend this article to you. If you want to learn Unix commands, you can just click it.
|