Shell script echo nieuwe regel naar bestand
Ik wil een nieuwe regel echoën naar een bestand tussen variabelen in een shell script. Hier is mijn code:
var1="Hello" var2="World!" logwrite="$var1 [Here's where I want to insert a new line] $var2 echo "$logwrite" \>\> /Users/username/Desktop/user.txt
Op dit moment, als ik mijn script uitvoer, laat het bestand user.txt het volgende zien:
Hello World!
Ik wil dat het laat zien:
Hello World!
Hoe doe ik dat?
EDIT: Hier is mijn shellscript:
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"