touch shell脚本并修改为777权限的方法
程序员文章站
2022-03-20 15:17:34
mksh.sh#!/bin/bashfor i in "$@"do touch ${i} chmod 777 ${i} echo "#!/bin/bash">${i}donem...
mksh.sh
#!/bin/bash for i in "$@" do touch ${i} chmod 777 ${i} echo "#!/bin/bash">${i} done
mkcpptest.sh
#!/bin/bash for i in "$@" do touch ${i} echo '#include<iostream> #include<ctime> using namespace std; int main(int argc, char** argv){ return 0; }'>${i} done
#创建 cppf=time;./mkcpptest.sh ${cppf}.cpp &&vi ${cppf}.cpp;g++ -g ${cppf}.cpp -o ${cppf}.out #不创建 cppf=time;vi ${cppf}.cpp;g++ -g ${cppf}.cpp -o ${cppf}.out
ps:下面给大家介绍下linux shell 脚本自动创建文件并修改其权限的相关知识,具体内容如下所示:
在学习《linux命令行与shell脚本编程大全》第三版时,每次运行书上的代码时,需要创建一个testxx.sh文件,修改其执行权限,最后再用vim来编辑。这样一个重复的过程,可以通过书中学习的知识编写一个脚本来自动解决,该脚本命名为newtestsh。
代码如下:
filename=test"$1".sh echo "create new test file: $filename" touch $filename chmod u+x $filename read -p "press enter to start to edit the file: " start vim $filename
完成后,将文件newtestsh复制到目录/usr/bin下,并用命令
sudo chmod 777 /usr/bin/newtestsh
来修改其执行权限。如此之后,随时随地可以用脚本newtestsh来自动创建新的名为testxx.sh的可执行文件。
用法示例:
newtestsh 15
在当前目录下创建一个名为test15.sh的可执行文件,再次按enter后文件将被编辑器vim打开。
达到小小的学以致用的目的了。
总结
到此这篇关于touch shell脚本并修改为777权限的方法的文章就介绍到这了,更多相关touch shell脚本777权限内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!