我創建了一個簡單的shell腳本:bash腳本來創建另一個文件
#!/bin/bash
clear
echo "Starting Script now....."
echo "Write the info below to a new file in same directory...."
echo "name: John Smith"
echo "email: [email protected]
echo "gender: M"
echo
echo
echo "File is done"
我想創建一個與名稱,電子郵件,和性別信息相同目錄中的文件。 我不希望從這樣的命令行做到這一點:
#./script.sh > my.config
我寧願從文件本身內做到這一點。
很酷! +1 – 2012-01-15 01:31:08