sed 无法打印整个文件名

sed 无法打印整个文件名

列出当前文件夹中的文件:

ls -al
total 92
drwxr-xr-x  2 debian debian 77824 Oct 28 12:31  .
drwxrwxrwt 27 root   root    4096 Oct 28 12:35  ..
-rw-r--r--  1 debian debian    31 Oct 28 12:23 '伪å'$'\302\205\302\203''ç´ .txt'
-rw-r--r--  1 debian debian    13 Oct 28 12:22 'æµ'$'\302\213''é'$'\302\207\302\217''.txt'
-rw-r--r--  1 debian debian  2061 Oct 23 22:29  conf.py

当前文件夹中有三个文件,前两个文件比较特殊,第一个文件不仅包含特殊字符,而且文件名中还包含空格。

现在用 sed 打印它们:

ls -al |sed -n  '1,6p'
total 92
drwxr-xr-x  2 debian debian 77824 Oct 28 12:31 .
drwxrwxrwt 26 root   root    4096 Oct 28 12:36 ..
-rw-r--r--  1 debian debian    31 Oct 28 12:23 伪å
ç´ .txt
-rw-r--r--  1 debian debian    13 Oct 28 12:22 æµé.txt
-rw-r--r--  1 debian debian  2061 Oct 23 22:29 conf.py

如何修复它?

相关内容