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.
我正在使用 find 查找文件列表,但有人在子目录中,我只需要获取文件名。
关于如何做的任何想法?
如果对 awk 不满意,可以使用 cut 命令
your_find_command | rev | cut -d"/" -f1 | rev
your_find_command|awk -F"\/" '{print $NF}'
或者
your_find_command -exec basename {} \;