在 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'