关于cut的用法?

关于cut的用法?

如下,如何用cut取得最后一列字段?
(awk当然很容易实现
只是为了更好理解 cut)
并请解释以下操作错在哪?

[01:16:15@shell_test]# ll
total 20
-rwxrwxrwx  1 root root   43 Jan  4 01:06 aa
-rw-r--r--  1 root root 1307 Jan  4 01:16 dir
-rw-r--r--  1 root root  183 Jan  4 01:03 dire
-rw-r--r--  1 root root 1307 Jan  4 00:55 hd
-rw-r--r--  1 root root  132 Jan  4 01:00 kk
[01:16:27@shell_test]# ll | cut -d' ' -f9

Jan
4

4

[01:16:47@shell_test]#      
这种情况最好还是用 awk,因为 cut 不会将连续的几个空格看做一个 delimiter:
复制内容到剪贴板
代码:
$ echo "  abc" | cut -d " " -f 3  [color=red]# abc 前面有两个空格[/color]
abc
(已至凌晨,这位仁兄还在挑灯夜读,佩服)      

版主知道为什么有些鸟早飞么……

谢谢