我装的是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"
展开
 我来答
百度网友f91e3bc
推荐于2016-08-19 · TA获得超过196个赞
知道小有建树答主
回答量:193
采纳率:0%
帮助的人:192万
展开全部
vim是字符编辑器(跟图形界面下gedit功能类似,只是在字符界面下,熟悉后功能更强大),不是编译器,这段代码需要添加可执行权限后双击,选择运行或打开终端运行该文件。
在沙漠里冲凉
2011-12-01
知道答主
回答量:15
采纳率:0%
帮助的人:5万
展开全部
你要先编译该段代码,可以用gcc编译,然后运行便可
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式