shell 列出文件夹下所有文件的名称

 1 #!/bin/bash
  2 Foulder_A="/dawnfs/users/nlplab/user/sufang/testFile"
  3 
  4 for file_a in ${Foulder_A}/*
  5 do
  6     temp_file=`basename $file_a`
  7     echo $temp_file
  8 done
  9 

 

你可能感兴趣的:(Linux)