获取当前文件路径
curPath=$(readlink -f "$(dirname "$0")")
echo $curPath
#或者
curPath=$(dirname $(readlink -f "$0"))
echo $curPath
获取某个文件夹下的所有文件名(含文件夹)
获取某个文件夹下的所有文件名(含文件夹),并显示
#!/bin/sh
#============ get the file name ===========
Folder_A="/home/youname/shell/gotfilename/bin"
for file_a in ${Folder_A}/*
do
temp_file=`basename $file_a`
echo $temp_file
done
若要去掉文件名的后缀(假如该文件夹下的所有文件为.txt格式),则代码为
#!/bin/sh
#============ get the file name ===========
Folder_A="/home/Neo/shell/gotfilename/bin"
Output_file="output.txt"
#这里用于清空原本的输出文件,感觉 : 这个符号用处挺大,shell的学习还是要多用才是
: > $Output_file
for file_a in ${Folder_A}/*
do
temp_file=`basename $file_a`
echo $temp_file >> $Output_file
done