更新されていない場合、update_history
テキストファイルに次のものを含めるにはどうすればよいですか?
hello\ world john\ doe
これは$greeting $name
関数やコマンドをhello\ world john\ doe
。
function update_history {
history=/tmp/hist
grep -qF "$1" "$history" \
|| (combinations=$(echo "$1" | cat - $history) \
&& echo "$combinations" > $history)
}
greeting=hello\ world
name=john\ doe
update_history "$greeting $name"
答え1
引数拡張を二重引用符で囲みます。
update_history "$greeting" "$name"