Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有:
ls -1 $(pwd)/*
为我提供具有绝对路径的目录中的所有文件 - 但使用每个文件列表开头的目录对其进行格式化。
有没有办法递归地获取目录中的文件列表(绝对路径) - 不包括目录/子目录本身?
find $(pwd) -type f -print
或者
find $(pwd) -type f -ls
如果您将其输入其他内容,您可能需要 -print0 (处理带有空格的文件名)。
例如:找到 . -type f -print0 | xargs --null --no-run-if-empty grep