Shell(Bash)编程实例之获取某个文件夹下的所有文件名(含文件夹)

http://blog.csdn.net/backgarden_straw/article/details/8599618

[plain]  view plain copy
  1. #!/bin/sh  
  2. #============ get the file name ===========  
  3. Folder_A="/home/youname/shell/gotfilename/bin"  
  4. for file_a in ${Folder_A}/*; do  
  5.     temp_file=`basename $file_a`  
  6.     echo $temp_file  
  7. done        
如果要输出到一个文件的话也可以重定向到一个文件中去

修改为:

[plain]  view plain copy
  1. #!/bin/sh  
  2. #============ get the file name ===========  
  3. Folder_A="/home/Neo/shell/gotfilename/bin"  
  4. Output_file="output.txt"  
  5. #这里用于清空原本的输出文件,感觉 : 这个符号用处挺大,shell的学习还是要多用才是  
  6. : > $Output_file                                                                                                                                            
  7. for file_a in ${Folder_A}/*; do  
  8.     temp_file=`basename $file_a`  
  9.     echo $temp_file >> $Output_file  
  10. done  


更新(20130222日)--------增加了交互性

[html]  view plain copy
  1. #!/bin/sh  
  2. #============ get the file name ===========  
  3. echo -e "请输入你要读取的文件夹路径\n当前路径为${PWD}"  
  4. read InputDir  
  5. echo "你输入的文件夹路径为${InputDir}"  
  6. echo -e "请输入你要将数据输出保存的文件路径n当前路径为${PWD}"  
  7. read OutputFile    
  8. echo "输出保存的文件路径为${OutputFile}"  
  9. > $OutputFile   #清空OutputFile  
  10. #循环读取文件夹名  
  11. for file_a in ${InputDir}/*; do  
  12.     temp_file=`basename $file_a`  
  13.     echo $temp_file >> $OutputFile  
  14. done  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值