Bashでは、改行をコマンドライン引数として渡すのは簡単です。
foo 'this is
a command line argument
with newlines'
しかし、tcshで同じ内容を試してみると、不足していると文句を言います'
。 tcshに同じ内容をどのように入力できますか?
答え1
echo 'this has\
more than one line'
Bashでは、改行をコマンドライン引数として渡すのは簡単です。
foo 'this is
a command line argument
with newlines'
しかし、tcshで同じ内容を試してみると、不足していると文句を言います'
。 tcshに同じ内容をどのように入力できますか?
echo 'this has\
more than one line'