在ls中列出文件的绝对路径 原理是 在每行记录的开头加上当前路径
[root@69f677f93f97 tmp]# ls | sed "s:^:`pwd`/:"/tmp/ks-script-DrRL8A/tmp/yum.log/tmp/yum_save_tx.2022-01-30.23-33.vAcuwJ.yumtx
列出当前目录下的所有文件(包括隐藏文件)的绝对路径, 对目录不做递归
[root@69f677f93f97 tmp]# find $PWD -maxdepth 1 | xargs ls -lddrwxrwxrwt. 1 root root 21 Jan 30 23:42 /tmpdrwxrwxrwt. 2 root root 6 Nov 13 2020 /tmp/.ICE-unixdrwxrwxrwt. 2 root root 6 Nov 13 2020 /tmp/.Test-unixdrwxrwxrwt. 2 root root 6 Nov 13 2020 /tmp/.X11-unixdrwxrwxrwt. 2 root root 6 Nov 13 2020 /tmp/.XIM-unixdrwxrwxrwt. 2 root root 6 Nov 13 2020 /tmp/.font-unix-rwx------. 1 root root 836 Nov 13 2020 /tmp/ks-script-DrRL8A-rw-------. 1 root root 0 Nov 13 2020 /tmp/yum.log
递归列出当前目录下的所有文件(包括隐藏文件)的绝对路径
[root@localhost test]# find $PWD | xargs ls -lddrwx------. 16 test test 4096 6月 8 2021 /home/test-rw-------. 1 test test 69 6月 8 2021 /home/test/.bash_history-rw-r--r--. 1 test test 18 4月 1 2020 /home/test/.bash_logout-rw-r--r--. 1 test test 193 4月 1 2020 /home/test/.bash_profile-rw-r--r--. 1 test test 231 4月 1 2020 /home/test/.bashrcdrwxr-xr-x. 2 test test 6 6月 8 2021 /home/test/桌面