Shell script echo nouvelle ligne au fichier
Je veux faire écho à une nouvelle ligne d'un fichier entre des variables dans un script shell. Voici mon 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
En ce moment, lorsque j'exécute mon script, le fichier user.txt affiche ceci :
Hello World!
Je veux qu'il s'affiche :
Hello World!
Comment faire ?
EDIT : Voici mon script shell :
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"