我装的是ubuntu,怎么使用vim编辑器,运行如下代码?
#/bin/bash#代码一functionchangename()一{if[-z$2];thenecho"lackfunctionparameter"return-1f...
#/bin/bash
#代码一
function changename() 一{
if [ -z $2 ];then
echo "lack function parameter "
return -1
fi
mv -f $1 $2
return 0
}
function change()
{
ofileName= # old file name
nfileName= #new file name
ls -l > a.txt
index=0
while read line
do
index=`expr ${index} + 1`
if [ ${index} -eq 1 ] ; then
continue; # ignore the first line of 'ls -l'
fi
a=($line)
#echo ${a[8]} the 9th element of array is file name
#echo ${a[3]} # the 3rd element of array is owner name
ofileName=${a[8]}
pos=`expr index ${ofileName} "."` # pos = the . position in file name
if [ ${pos} -eq 0 ] ; then # if no . in file name then nfileName=oldName+[+owner+]
nfileName="${ofileName}[${a[3]}]"
else
owner="[${a[3]}]."
nfileName="${a[8]/./${owner}} " # substitute the . character to the "[owner]."
fi
echo "nfilename=${nfileName}"
changename ${ofileName} ${nfileName} #call function changename to change file name to new file name
done<a.txt
}
change
ls -l
echo "changed successfully" 展开
#代码一
function changename() 一{
if [ -z $2 ];then
echo "lack function parameter "
return -1
fi
mv -f $1 $2
return 0
}
function change()
{
ofileName= # old file name
nfileName= #new file name
ls -l > a.txt
index=0
while read line
do
index=`expr ${index} + 1`
if [ ${index} -eq 1 ] ; then
continue; # ignore the first line of 'ls -l'
fi
a=($line)
#echo ${a[8]} the 9th element of array is file name
#echo ${a[3]} # the 3rd element of array is owner name
ofileName=${a[8]}
pos=`expr index ${ofileName} "."` # pos = the . position in file name
if [ ${pos} -eq 0 ] ; then # if no . in file name then nfileName=oldName+[+owner+]
nfileName="${ofileName}[${a[3]}]"
else
owner="[${a[3]}]."
nfileName="${a[8]/./${owner}} " # substitute the . character to the "[owner]."
fi
echo "nfilename=${nfileName}"
changename ${ofileName} ${nfileName} #call function changename to change file name to new file name
done<a.txt
}
change
ls -l
echo "changed successfully" 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询