Detailed explanation of common command lines for iOS development

Detailed explanation of common command lines for iOS development

For iOS development, we don’t use many command lines, but there are still some that we need to be familiar with. Recently, I worked with some experts in the company on some things, and there were all kinds of command lines. I was embarrassed that I didn’t know how to use them. In fact, I didn’t know what command lines were. For example, the simplest command of how to check the IP address using the terminal, I even forgot what the command was. So today I am going to learn some common command lines to save myself from embarrassment in the future??

[[218189]]

man

When we use some programs, we may not know what commands they have. At this time, we can use the man command.

Get help for ls

  1. $ man ls

See how many manuals (for different aspects) have the same name

  1. $ man -f ls
  2. ls (1) - list directory contents
  3. ls (1p) - list directory contents

View specific manual

  1.      
  2. $ man 1p ls

Exit man

  1. After execution, press q to exit in the man page.

help

You can tell what help means just by looking at the name. Generally, programs will have this parameter, which will output the simplest and most useful introduction.

  1. $ man --help ### Get help from man  
  2. $ ls --help ### Get help for ls  

cursor

  1. Up (up arrow key) can call up the input history execution record and quickly execute commands
  2. down (down arrow key) with up to select historical execution records
  3. Home Move the cursor to the beginning of the line
  4. End Move the cursor to the end of this line
  5. PgUp Page up
  6. PaDN Page down

There are no Home, End, Page UP, Page DOWN keys on the keyboard of Apple Mac computers. You can get the same functions by using the Fn key combination: Home key = Fn + left direction, End key = Fn + right direction, Page UP = Fn + up direction, Page DOWN = Fn + down direction

Terminate the current program

  1. 1ctrl + c terminates the current program

Tab completion

Tab completion is a very useful feature that can be used to automatically complete commands or file names.

  • Press Tab twice without input to list all available commands.
  • A partial command name or file name has been entered. Press Tab to complete it automatically.

After I enter De, I press the Tab key to complete Desktop/, and then press the Tab key twice in succession to view all the directories under Desktop/

cd

cd is to find the file according to the path

For example, there is a Text file on the desktop

  • Absolute path: The absolute path emphasizes starting from / and continuing to the path cd Desktop/Text
  • Relative path: directly cd Text
  • . represents the current directory; .. represents the parent directory; the parent directory can be accessed by cd ..

ls

  1. $ ls ### List only visible files in the current directory
  2. $ ls -l ### List the detailed information of the visible files in the current directory
  3. $ ls -hl ### List detailed information and display file sizes in readable sizes
  4. $ ls -al ### List detailed information of all files (including hidden files)

more

Generally, when a document is too long, we cannot display it completely on one screen. In this case, we need to use the more command. More displays the content line by line.

less

Less is similar to more, but less supports scrolling up and down to view the content, while more only supports line-by-line display.

Restart Command

reboot is the reboot command

  1. # reboot
  2. The difference between '$' and '#' is that '$' can be executed by ordinary users.
  3. The '#' command is executable only by the root user, or by ordinary users using 'sudo'.  

Shutdown Command

  1. poweroff is the shutdown command
  2. poweroff Shut down immediately

ping

Ping is mainly used to test network connectivity. It sends data packets to the target machine to test whether the two hosts are connected and the delay. Ping is done through the domain name. If the DNS is not set up properly, ping may not be successful.

Get network parameters

The ifconfig command is used to configure and display the network parameters of the network interface in the Linux kernel. The network card information configured with the ifconfig command will not exist after the network card is restarted and the machine is restarted. If you want to store the above configuration information permanently in the computer, you need to modify the network card configuration file.

<<:  2017 Mobile Map App Research Report: Which is the best among Amap, Baidu and Tencent?

>>:  The mini-game market has been ignited by WeChat, and social platforms are flocking to it. How to divide the cake?

Recommend

Tips for advertising on Weibo, Zhihu and other platforms, with case analysis

Weibo is a platform with very high user activity,...

LG's four new smartphones all run Android Lollipop

LG announced yesterday that it will launch four m...

Product Operation: How to build a membership points system?

The membership system product is a system that in...

How to create opium-like articles that users can’t stop reading? (superior)

Many people would emphasize that today in the era...

Aston Martin and LeEco end electric car partnership, sources say

As of press time, LeEco Holdings' public rela...

Brand promotion and marketing: Why do companies dare to do "junk advertising"?

01 Two advertising people who worked on the brain...

Can Alibaba really monopolize the “Overseas Shopping” trademark?

More than 88% of “sea shopping” trademarks are ap...

Surprise! Windows 10 loves to spread your WiFi password

Windows 10's Wi-FiSense feature has a securit...