转义要是在\后边加个换行,效果和没有这个换行一样要是加个其他字符,就是表示那个字符本身,但是就算是特殊字符也当成普通字符来解释
[[email protected] ~]# cat /etc/passwd | > awk ‘{FS=":"} $3 < 10 {print $1 "\t " $3}‘ root:x:0:0:root:/root:/bin/bash bin 1 daemon 2 ======================》 cat /etc/passwd | awk ‘{FS=":"} $3<10 {print $1 "\t" $3}‘
时间: 2024-10-17 06:45:54