服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - 用SHELL实现子目录文件列表操作指南

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

2019-12-16 15:48Linux教程网 Linux

有些朋友可能要需要列出子目录文件,接下来将详细介绍用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 /

延伸 · 阅读

精彩推荐