当前位置: 技术问答>linux和unix
新手上路:这条语句如何写?
来源: 互联网 发布时间:2016-04-16
本文导语: Unix中,列出/usr下文件后缀为.txt, ,且包含字串"hello"的文件名。 | find /usr -type f |awk -F/ ' $NF ~ /.*hello.*txt$/{print }'
Unix中,列出/usr下文件后缀为.txt, ,且包含字串"hello"的文件名。
|
find /usr -type f |awk -F/ ' $NF ~ /.*hello.*txt$/{print }'