cut 命令專題

fjzcau發表於2015-02-08
[etl@cppimii-etl01 zhoumo]$ ll
總用量 224
-rwxrwxr-x  1 etl etl   6898  5月  9 16:21 autocp2local_nqf.pl
-rwxrwxr-x  1 etl etl   5833  5月  9 16:21 autocp2local.pl
-rw-r--r--  1 etl etl   2560  5月  9 16:20 del_data.cfg
-rw-r--r--  1 etl etl   2092  5月  9 16:25 del_data_nqf.cfg
-rw-r--r--  1 etl etl    455  5月  9 16:20 load.cfg
-rw-r--r--  1 etl etl    347  5月  9 16:20 load_nqf.cfg
drwxrwxr-x  2 etl etl  12288  6月 12 11:52 log
-rw-------  1 etl etl 141066  6月 12 11:52 nohup.out
-rwxrwxr-x  1 etl etl  19976  6月  6 14:02 zhoumo_nqf.pl
-rwxrwxr-x  1 etl etl  13223  5月  9 16:30 zhoumo.pl
[etl@cppimii-etl01 zhoumo]$ ll | tr -s ' ' | cut -d' ' -f1,9
總用量
-rwxrwxr-x autocp2local_nqf.pl
-rwxrwxr-x autocp2local.pl
-rw-r--r-- del_data.cfg
-rw-r--r-- del_data_nqf.cfg
-rw-r--r-- load.cfg
-rw-r--r-- load_nqf.cfg
drwxrwxr-x log
-rw------- nohup.out
-rwxrwxr-x zhoumo_nqf.pl
-rwxrwxr-x zhoumo.pl

tr -s ' '    將多個空格合併為一個空格

[etl@cppimii-etl01 fjz_script]$ who am i
etl      pts/9        Jun 12 09:51 (10.3.7.90)
[etl@cppimii-etl01 fjz_script]$ who am i | tr -s ' ' |  cut -d ' '  -f 1,6
etl (10.3.7.90)

who am i | tr -s ' ' |  cut -d " "  -f 1,6

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22661144/viewspace-1430656/,如需轉載,請註明出處,否則將追究法律責任。

相關文章