欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 操作系统 > LINUX

用SHELL实现子目录文件列表操作指南

发布时间:2016-08-29 作者:佚名 来源:互联网
有些朋友可能要需要列出子目录文件,接下来将详细介绍用SHELL实现子目录文件列表的方法
需求:/home/file1/free这个目录底下,有部分子目录有list.php,list.php为所在目录的一个文件列表,但要过滤掉list.php这个文件

SHELL:

cd /home/file1/free

find . -name "list.php" > /home/nexian/free.txt

sed -i 's/list.php//g' /home/nexian/free.txt

sed -i 's/.///g' /home/nexian/free.txt

lsnum=`cat /home/nexian/free.txt`

for x in $lsnum

do

cd /home/file1/free/$x

echo $x

mv list.php list2.php

ls -p|grep "[^/]$" > list.php

sed -i "/list.php/d" list.php

sed -i "/list2.php/d" list.php

done

ls命令只显示当前目录下的文件(不显示目录),也不包括任何子目录下的文件

ls -l | grep ^-

ls -p|grep "[^/]$"

ls命令只显示文件夹而不显示文件

ls -l |grep '^d'

ls -lF |grep /

相关推荐