shell之创建文件及内容
Posted two-bees
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell之创建文件及内容相关的知识,希望对你有一定的参考价值。
shell之创建文件夹:
[[email protected]nginx shell_command]# vi mkdir.sh #!/bin/sh parentDir=$1 fileName=$2 dirAndName=$parentDir/$fileName if [ ! -d "$dirAndName" ];then mkdir $dirAndName echo "创建文件夹成功" else echo "文件夹已经存在" fi
调用shell创建文件夹:
[[email protected] shell_command]# ./mkdir.sh /media/sf_Project/self/smarty-frame/application/ApiLoveHouse Model 创建文件夹成功
shell之创建php文件:
[[email protected]nginx shell_command]# vi mkfile.sh #!/bin/sh parentDir=$1 fileName=$2 dirAndName="$parentDir/$fileName.php" if [ ! -d "$parentDir" ];then echo "父级文件夹路径错误" else cd $parentDir if [ ! -f "$dirAndName" ];then touch $dirAndName echo "<?php" > $dirAndName echo "namespace App;" >> $dirAndName echo "" >> $dirAndName echo "class $fileName{" >> $dirAndName echo " //" >> $dirAndName echo "}" >> $dirAndName echo "?>" >> $dirAndName echo "文件创建完成" else echo "文件已经存在" fi fi
或
#!/bin/sh parentDir=$1 fileName=$2 dirAndName="$parentDir/$fileName.php" if [ ! -d "$parentDir" ];then echo "父级文件夹路径错误" else cd $parentDir if [ ! -f "$dirAndName" ];then cat>$dirAndName<<EOF <?php namespace App; class $fileName{ // } ?> EOF echo "文件创建完成" else echo "文件已经存在" fi fi
调用shell创建文件夹:
[[email protected] shell_command]# ./mkfile.sh /media/sf_Project/self/smarty-frame/application/ApiLoveHouse Model 文件创建完成
以上是关于shell之创建文件及内容的主要内容,如果未能解决你的问题,请参考以下文章