红联Linux门户
Linux帮助

linux下编写shell获取指定目录下的文件名

发布时间:2016-07-27 15:51:07来源:linux网站作者:周作才
linux下用shell获取指定目录下的文件名代码:
 
#!/bin/sh    
#============ get the file name ===========#   
FolderPath="/home/data"    
for fileName in ${FolderPath}/*; do    
tempFile=`basename $fileName`    
echo $tempFile    
done    
#==========================================#  
 
该方法在后续的用于linux环境下测试会有帮助。
 
Linux获取指定目录的父目录:http://www.linuxdiyf.com/linux/1383.html
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22762.html