您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用shell怎么創(chuàng)建一個文件,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
shell之創(chuàng)建文件夾:
[root@vbox-nginx shell_command]# vi ./mkdir.sh #!/bin/sh parentDir="/media/sf_Project/self/smarty-frame/application/$1" fileName=$2 dirAndName=$parentDir/$fileName if [ ! -d "$dirAndName" ];then mkdir $dirAndName echo "創(chuàng)建文件夾成功" else echo "文件夾已經(jīng)存在" fi [root@vbox-nginx shell_command]# cat ./mkdir.sh #!/bin/sh parentDir="/media/sf_Project/self/smarty-frame/application/$1" fileName=$2 dirAndName=$parentDir/$fileName if [ ! -d "$dirAndName" ];then mkdir $dirAndName echo "創(chuàng)建文件夾成功" else echo "文件夾已經(jīng)存在" fi
調(diào)用shell創(chuàng)建文件夾:
[root@vbox-nginx shell_command]# ./mkdir.sh ApiLoveHouse Model //上級文件夾 要創(chuàng)建的文件夾名 創(chuàng)建文件夾成功
shell之創(chuàng)建php文件:
[root@vbox-nginx shell_command]# vi ./mkfile.sh #!/bin/sh parentDir="/media/sf_Project/self/smarty-frame/application/$1" fileName=$2 dirAndName="$parentDir/$fileName.php" string=${parentDir#*application} namespace=$(echo $string | sed 's#\/#\\#g') echo $string echo $namespace if [ ! -d "$parentDir" ];then echo "父級文件夾路徑錯誤" else cd $parentDir if [ ! -f "$dirAndName" ];then touch $dirAndName echo "<?php" > $dirAndName if [[ $fileName == *$strCon* ]];then touch $dirAndName echo "<?php" > $dirAndName if [[ $fileName == *$strCon* ]];then echo "namespace App$namespace;" >> $dirAndName elif [[ $fileName == *$strMod* ]];then echo "namespace App\$namespace;" >> $dirAndName else echo "當(dāng)前只能創(chuàng)建controller和model文件" fi echo "" >> $dirAndName echo "class $fileName{" >> $dirAndName echo " //" >> $dirAndName echo "}" >> $dirAndName echo "?>" >> $dirAndName echo "文件創(chuàng)建完成" else echo "文件已經(jīng)存在" fi 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 "文件創(chuàng)建完成" else echo "文件已經(jīng)存在" fi fi
調(diào)用shell創(chuàng)建文件:
[root@vbox-nginx shell_command]# ./mkfile.sh ApiLoveHouse/Controllers WelcomeController //上級文件夾 要創(chuàng)建的文件名 文件創(chuàng)建完成
shell 在已有文件中追加多行內(nèi)容
通過 cat>>文件<<EOF EOF 來實現(xiàn)文件追加多行內(nèi)容
執(zhí)行
cat >>/test/appendLine.conf<<EOF 我是第二行 我是第三行 EOF
顯示結(jié)果為:
上述內(nèi)容就是使用shell怎么創(chuàng)建一個文件,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。