0
我試圖寫一個shell腳本來收集用戶輸入後追加到一個文本文件中。 這裏是我與合作:收集用戶輸入到一個變量被附加到文件
note_file=~/project_2/file
loop_test=y
while test "$loop_test" = "y"
do
clear
tput cup 1 4; echo " Note Sheet Addition "
tput cup 2 4; echo "============================="
tput cup 4 4; echo "Note: "
tput cup 5 4; echo "Add Another? (Y)es or (Q)uit: "
tput cup 4 10; read note
if test $note = "q"
then
clear; exit
fi
if test "$note" != ""
then
echo "$note:" >> $note_file
fi
tput cup 5 33; read hoop_test
if [ "$hoop_test" = "q" ]
then
clear; exit
fi
done
我現在的問題是,我想保存在筆記可變整個句子,而不是隻是一個單一的arguement。 即注=「這是一個註解或其他一些普通的文字東西」你追加到每個note
(可能是故意的,說不上來),你的整個問題造成較明顯hoop
loop
拼寫問題
我不知道你的意思:不'讀note'保持全行中輸入一個字符串,即包括空間? – Evert
除了明顯的'read hoop_test'而不是'read loop_test'外, –