1. 程式人生 > >linux下編寫shell獲取指定目錄下的檔名

linux下編寫shell獲取指定目錄下的檔名

#!/bin/sh  
#============ get the file name ===========# 
 
FolderPath="/home/data"  
for fileName in ${FolderPath}/*; do  
    tempFile=`basename $fileName`  
    echo $tempFile  
done  

#==========================================#

該方法在後續的用於linux環境下測試會有幫助。