首页 > 开发 > Linux Shell > 正文

shell之创建文件及内容的方法示例

2020-07-26 23:25:29
字体:
来源:转载
供稿:网友

shell之创建文件夹:

[root@vbox-nginx shell_command]# vi ./mkdir.sh #!/bin/shparentDir="/media/sf_Project/self/smarty-frame/application/$1"fileName=$2dirAndName=$parentDir/$fileNameif [ ! -d "$dirAndName" ];thenmkdir $dirAndNameecho "创建文件夹成功"elseecho "文件夹已经存在"fi[root@vbox-nginx shell_command]# cat ./mkdir.sh #!/bin/shparentDir="/media/sf_Project/self/smarty-frame/application/$1"fileName=$2dirAndName=$parentDir/$fileNameif [ ! -d "$dirAndName" ];thenmkdir $dirAndNameecho "创建文件夹成功"elseecho "文件夹已经存在"fi

调用shell创建文件夹:

[root@vbox-nginx shell_command]# ./mkdir.sh ApiLoveHouse Model    //上级文件夹 要创建的文件夹名创建文件夹成功

shell之创建php文件:

[root@vbox-nginx shell_command]# vi ./mkfile.sh #!/bin/shparentDir="/media/sf_Project/self/smarty-frame/application/$1"fileName=$2dirAndName="$parentDir/$fileName.php"string=${parentDir#*application}namespace=$(echo $string | sed 's#//#//#g')echo $stringecho $namespaceif [ ! -d "$parentDir" ];thenecho "父级文件夹路径错误"elsecd $parentDirif [ ! -f "$dirAndName" ];thentouch $dirAndNameecho "<?php" > $dirAndNameif [[ $fileName == *$strCon* ]];thentouch $dirAndNameecho "<?php" > $dirAndNameif [[ $fileName == *$strCon* ]];thenecho "namespace App$namespace;" >> $dirAndNameelif [[ $fileName == *$strMod* ]];thenecho "namespace App/$namespace;" >> $dirAndNameelse echo "当前只能创建controller和model文件"fiecho "" >> $dirAndNameecho "class $fileName{" >> $dirAndNameecho "     //" >> $dirAndNameecho "}" >> $dirAndNameecho "?>" >> $dirAndNameecho "文件创建完成"elseecho "文件已经存在"fi fifi

#!/bin/shparentDir=$1fileName=$2dirAndName="$parentDir/$fileName.php"if [ ! -d "$parentDir" ];thenecho "父级文件夹路径错误"elsecd $parentDirif [ ! -f "$dirAndName" ];thencat>$dirAndName<<EOF<?phpnamespace App;class $fileName{    //}?>EOFecho "文件创建完成"elseecho "文件已经存在"fifi

调用shell创建文件:

[root@vbox-nginx shell_command]# ./mkfile.sh ApiLoveHouse/Controllers WelcomeController    //上级文件夹 要创建的文件名文件创建完成

shell 在已有文件中追加多行内容

通过 cat>>文件<<EOF EOF 来实现文件追加多行内容


执行

cat >>/test/appendLine.conf<<EOF我是第二行我是第三行EOF

显示结果为:

到此这篇关于shell之创建文件及内容的方法示例的文章就介绍到这了,更多相关shell 创建文件及内容内容请搜索武林网以前的文章或继续浏览下面的相关文章希望大家以后多多支持武林网!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表