linux-echo
linux-echo
echo "hello"
echo -n "hello" # 这种会去掉换行
sh 不支持这个 -n 参数,很奇怪
$ echo -n "hello"
hello%
使用 -n 参数 zsh 后面会跟着一个百分号
本站总访问量次 本站访客数人次 本文总阅读量次
echo "hello"
echo -n "hello" # 这种会去掉换行
sh 不支持这个 -n 参数,很奇怪
$ echo -n "hello"
hello%
使用 -n 参数 zsh 后面会跟着一个百分号
This is zsh
's way of telling you that the preceding command outputted a partial line and the shell terminated that line to give you a prompt on a new line.