25
25
シェルスクリプト echo new line to file
シェルスクリプトの変数の間にあるファイルへの改行をエコーしたい。以下は私のコードです。
var1="Hello" var2="World!" logwrite="$var1 [Here's where I want to insert a new line] $var2 echo "$logwrite" \>\> /Users/username/Desktop/user.txt
今、スクリプトを実行すると、user.txt ファイルに以下のように表示されます。
Hello World!
と表示されます。
Hello World!
と表示させたいのですが、どうすればいいですか?
EDIT: 以下は私のシェルスクリプトです。
echo -n "What is your first name? " read first echo -n "What is your last name? " read last echo -n "What is your middle name? " read middle echo -n "What is your birthday? " read birthday echo -e "First Name: $first /nLast Name: $last /nMiddle Name: $middle /nBirthday: $birthday" \>\> /Users/matthewdavies/Desktop/user.txt qlmanage -p "~/Desktop/user.txt"
``` 0x1&