


This guide will lead you to explore the vast world of Linux and Bash symbols and commands. We'll cover a variety of topics such as file system navigation, text processing, networking, system administration, and more, and provide practical examples for each command. Whether you're an experienced Linux user or just getting started, this guide can help you improve your command line skills and become more efficient in your daily work. So open your terminal and let’s get started!
Redirection
One of the most basic yet powerful features of Bash is the ability to redirect the input and output of commands. Here are some symbols that can be used for redirection:
- >: Redirects the output of the command to a file, overwriting its contents if the file already exists. For example, ls > linuxmi.txt writes the output of the command to ls named linuxmi.txt.
- >>: Redirects the output of the command to a file, if the file already exists. Append it to the end of the file. For example, echo "Hello, world!www.linuxmi.com" >> linuxmi.txt will append the string "Hello, world!www.linuxmi.com" to the end of the file.
- <: change the input of command from keyboard to file. for example sort linuxmi.txt will contents linuxmi.txt.>
- 2>: Used to redirect the error output of the command to a file.
- 2>>: Used to append the command’s error output to a file.
- &>: Used to redirect both the output and error output of the command to a file.
- &>>: Used to append the output and error output of the command to a file.
Pipeline
You can use pipes to connect multiple commands together so that the output of one command becomes the input of another command. The symbol for a pipe is |. Here is an example:
ls -l | grep "linuxmi"
This command lists the contents of the current directory in long format ( ls -l ), then passes the output to the grep command, which searches the output for the string "linuxmi".
- tee: Used to split the output of a command and send it to files and standard output.
Wildcards and Wildcards
Bash supports a powerful feature called wildcards, which allows you to use wildcards to match filename patterns. Here are some of the most commonly used symbols in globbing:
- *: Matches any number of characters in the file name. For example, ls *.txt will list all files in the current directory that begin with .txt.
- ?: and match any single character in their names. For example, ls file?.txt will list all files in the current directory that begin with file and are followed by only one character, followed by .txt.
- [ ]: Matches any one of a set of characters. For example, ls file[123].txt will list all files in the current directory that start with or and end with file, followed by .123.txt
common expression
- grep: Used to search for patterns in files or streams.
- sed: Used to perform text conversion on files or streams.
- awk: used for graphics scanning and processing.
- egrep: Regular expression for expansion.
- fgrep: used for fixed string regular expressions.
- regex: Use special characters and operators to specify symbols for text patterns.
Variable expansion and environment variables
- $: used to reference the value of a variable.
- export: used to create or modify environment variables in Bash.
- ${}: used for variable expansion.
- $(()): used for arithmetic expansion.
- env: used to display the current environment variables.
- echo: used to display the text or value of environment variables.
通配符和通配符
- *: 匹配文件名中任意数量的字符。
- ?: 匹配文件名中的任何单个字符。
否定
- !:与其他命令结合使用,执行取反。
算术运算
- +:算术表达式中的加法运算符。例如,echo $((2+3))将输出5.
- -:算术表达式中的减法运算符。例如,echo $((16-5))将输出11.
- *:算术表达式中的乘法运算符。例如,echo $((4*5))将输出20.
- /: 算术表达式中的除法运算符。例如,echo $((20/2))将输出10.
- $((expression)):用于在 Bash 中执行算术运算。例如,echo $((2 + 6))将打印值 8。
- expr:用于执行算术运算。
比较
- ==:用于比较条件表达式中两个值是否相等。例如,if [ "$name" == "linuxmi" ]; then echo "Hello, linuxmi!"; fi将输出“Hello, linuxmi!” 如果变量的name值为“linuxmi”。
- !=:用于比较条件表达式中的两个值是否不相等。例如,if [ "$name" != "linuxmi" ]; then echo "You're not linuxmi!"; fi将在变量name的值不为“John”输出“You’re not linuxmi!”。
条件执行
- &&:用于仅在前一个命令成功执行时执行后续命令。例如,command1 && command2 会仅在 command1 成功执行后才执行command2。
- ||:用于仅在前一个命令失败时执行后续命令。例如,command1 || command2会仅在 command1 失败后才执行 command2。
条件语句
- if:用于检查条件是否为真并相应地执行命令。例如,if [[ $foo == "bar" ]]; then echo "foo is bar"; fi将检查变量是否foo等于“bar”,如果为真则打印“foo is bar”。
- elifif:如果语句中的先前条件为假,则用于检查其他条件。例如,if [[ $foo == "bar" ]]; then echo "foo is bar"; elif [[ $foo == "baz" ]]; then echo "foo is baz"; else echo "foo is something else"; fi将检查是否foo等于“bar”并在为真时打印“foo is bar”,否则检查是否foo等于“baz”并在为真时打印“foo is baz”,最后打印“foo is something else”如果前面两个条件都为假。
- [[ ]]:用于在 Bash 中执行条件测试。
- case:用于将变量与模式列表进行匹配并相应地执行命令。例如:
case $fruit inapple)echo "It's an apple";;banana)echo "It's a banana";;*)echo "It's something else";;esac
将检查变量的值fruit,如果等于“apple”则打印“It’s an apple”,如果等于“banana”则打印“It’s a banana”,对于任何其他值则打印“It’s something else”。
Loop
- for: Used to create a loop that traverses a list of items. For example, for fruit in apple banana orange; do echo $fruit; done will output "apple", "banana", and "orange" on separate lines.
- while: Used to create a loop that will continue to execute commands as long as the condition is true. For example, while true; do echo "Hello"; sleep 1; done will repeatedly output "Hello" until the script is interrupted.
- until: Used to execute commands until the condition is true.
Function
- function: used to define a function in Bash. For example, function hello { echo "Hello, $1!"; } defines a function named hello that accepts one parameter and prints "Hello," followed by the parameter.
- $1, $2, etc.: used to refer to the first, second, third, etc. parameters passed to the function. For example, in the hello function defined above, $1 refers to the first parameter passed to the function.
Array
- []: used to define an array in Bash. For example, my_array=(apple banana orange) defines an array named my_array "apple", "banana", and "orange".
- ${array[@]}: used to reference all elements in an array in Bash. For example, echo ${my_array[@]} will output "apple banana orange" in one line.
Process Control and Management
- &: Used to run commands in the background.
- ctrl-c: Used to terminate a running command.
- ctrl-z: Used to pause a running command.
- ps: Used to display information about running processes.
- kill: Used to terminate a running process.
- nohup: Used to run commands in the background, even if the terminal is closed.
- nice: used to set the priority of the process.
- renice: used to modify the priority of an already running process.
File system operations
- cp: used to copy files.
- mv: used to move or rename files.
- rm: used to delete files.
- mkdir: used to create directories.
- rmdir: used to delete directories.
- ln: Used to create links between files or directories.
File and text operations
- head: Used to display the first few lines of the file.
- tail: used to display the last few lines of the file.
- sort: Used to sort lines of text alphabetically or numerically.
- uniq: used to remove duplicate lines of text.
- cut: Used to extract specific columns or fields from a line of text.
- paste: Used to merge lines from multiple files.
Permissions
- chmod: used to change the permissions of files and directories.
- chown: used to change the owner of a file or directory.
- chgrp: Group used to change files or directories.
- umask: used to set the default permissions for new files and directories.
String operations, searches and comparisons
- cut: used to extract specific columns from a file or stream.
- tr: Used to translate or delete characters.
- sort: Used to sort lines of text.
- uniq: Used to remove duplicate lines from a file or stream.
- grep: used to search for patterns in files or streams.
- sed: Used to perform text conversion on files or streams.
- awk: used for graphics scanning and processing.
- diff: Used to compare two files line by line.
- cmp: Used to compare two files byte by byte.
Network
- ping: used to test the connection to the network host.
- curl: used to transfer data to or from the server.
- wget: Used to download files from the Internet.
- ssh: Used to connect to remote computers securely.
- nslookup: Used to query a DNS server to resolve hostnames to IP addresses.
- ifconfig: used to display and configure network interfaces.
- netstat: Used to display network statistics and the number of active connections.
SSH and Encryption
- ssh-keygen: Used to generate and manage SSH keys for secure remote access.
- scp: Used to securely transfer files between systems over an SSH connection.
- openssl: For cryptographic functions such as generating and managing SSL/TLS certificates, encryption and decryption.
- gpg: used for encryption, decryption and digital signature verification.
System Information, Maintenance and Administration
- sudo: Used to run commands with elevated privileges.
- su: Used to switch to a different user account.
- systemctl: Used to manage system services in systemd-based Linux distributions.
- uptime: Used to display how long the system has been running.
- journalctl: used to view system logs.
- fdisk: used to create and operate disk partitions.
- mount: Used to mount the file system on the system.
- top: Used to display system resource usage.
- htoptop: A more advanced version that provides real-time system monitoring and resource usage information.
- ps: Used to display information about running processes.
- df: used to display disk space usage.
- du: Used to display the size of a file or directory.
- apt-get: Package management tool for installing, removing and updating software packages.
- dpkg: Package management tool for installing and managing software packages.
- shutdown: Used to shut down or restart the system.
- free: Used to display system memory usage.
- uname: Used to display system information such as kernel version, host name, etc.
- lscpu: used to display CPU information.
- lsusb: Used to display the USB devices connected to the system.
- nmon: Used to display detailed system performance information, including CPU, memory, disk I/O and network usage.
- sar: Used to collect and report system performance data over a period of time.
- lshw: used to display system hardware information.
- dmidecode: used to display the BIOS and hardware information of the system.
- lsblk: Used to display information about block devices (such as hard disks) in the system.
- lspci: Used to display PCI device information connected to the system.
- lsusb: Used to display USB device information connected to the system.
User input
- read: Used to read user input from the command line.
- select: Used to display a menu of options to the user.
Command line editing
- ctrl-a: used to move the cursor to the beginning of the line.
- ctrl-e: Used to move the cursor to the end of the line.
- ctrl-k: Used to delete text from the cursor position to the end of the line.
- ctrl-u: Used to delete text from the cursor position to the beginning of the line.
Text Edit
- nano: A simple command line text editor.
- vi or vim: A more advanced text editor with many features.
- cat: Used to display the contents of a file on the terminal.
- head: Used to display the first few lines of the file.
- tail: used to display the last few lines of the file.
Job Control
- jobs: Used to display the background job list.
- fg: used to bring background jobs to the foreground.
- bg: Used to move paused or stopped jobs to the background.
- kill: Used to terminate a running process.
User and Group Management
- useradd: used to create new user accounts.
- usermod: used to modify existing user accounts.
- userdel: used to delete user accounts.
- groupadd: used to create new user groups.
- groupmod: used to modify existing user groups.
- groupdel: used to delete user groups.
- passwd: used to change user password.
Debugging and Troubleshooting
- strace: Used to trace system calls and signals issued by a process.
- ltrace: Used to track library calls made by a process.
- gdb: A powerful debugger for debugging C and C programs.
- tcpdump: Used to capture and analyze network traffic.
- wireshark: GUI-based tool for analyzing network traffic. ellaneous
- echo: Used to display messages on the terminal.
- printf: used to format and display data.
- date: used to display or set the system date and time.
- tar: Used to create or extract compressed archives.
Various
- cal: used to display the calendar.
- date: Used to display or modify the system date and time.
- sleep: Used to delay the execution of a script or command for a specified amount of time.
- tee: Used to redirect output to the screen and files.
- history: Used to display the command history of the current shell session.
- echo: Used to print text to the terminal or output to a file.
Please note that the classification of symbols described in this guide is not absolute but is based on a possible classification. Some symbols may apply to more than one category, and there may be some overlap or duplication. The list of symbols is not completely exhaustive and may vary between Linux distributions and versions. Readers are encouraged to consult their system documentation for more information. This guide is intended to provide a comprehensive overview of Linux and Bash flags and commands, but is not intended to be a definitive resource.
Thanks for reading our comprehensive guide to Linux and Bash symbols and commands. I hope you found this guide helpful in mastering the command line. To stay up-to-date on the latest tips, tricks, and best practices for using these commands in your daily work, be sure to stay tuned to Linux Mito www.linuxmi.com for future articles. We'll provide detailed examples and practical examples to help you become a more proficient Linux user and command line expert.
The above is the detailed content of Improve your command-line skills: A complete guide to Bash and Linux symbols and commands. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

手机远程linux工具有:1、JuiceSSH,是一款功能强大的安卓SSH客户端应用,可直接对linux服务进行管理;2、Termius,可以利用手机来连接Linux服务器;3、Termux,一个强大的远程终端工具;4、向日葵远程控制等等。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
