我在我的脚本中有一个echo的问题:
echo -n "Some string..."
打印
-n Some string...
然后转到下一行。在控制台中,没有换行符,它可以正常工作:
Some string...
我在我的脚本中有一个echo的问题:
echo -n "Some string..."
打印
-n Some string...
然后转到下一行。在控制台中,没有换行符,它可以正常工作:
Some string...
当前回答
我在IBM z/OS中遇到了同样的问题,所以我使用了print而不是echo,而且它有效。
print -n "Some string ...."
print -从shell返回参数
其他回答
仅就最流行的Linux发行版Ubuntu及其Bash而言:
检查您正在使用哪个shell。主要是以下作品,其他看这个: echo $ 0 如果上面打印bash,那么下面将工作: Printf "hello with no new line print in end" 或 Echo -n "hello with no new line in end"
当您开始编写shell脚本时,请始终使用#!/usr/bin/env bash作为第一行。
该shell不会省略或操作转义序列。
例子:
echo "This is first \\n line"
打印
This is first \n line.
注意,AIX上的/usr/bin/echo和/bin/echo不支持任何参数,因此如果使用sh或KornShell (ksh) shell, -n和-e都不起作用。
C shell和Bash有自己的内置echo,支持-n。 这是相关的,因为许多shell脚本显式地使用sh或KornShell。
AIX确实有/usr/bin/printf,因此正如前面的一些回答中所建议的,
$ printf "whatever"
相当于echo -n "whatever",其中支持-n。
如果你在If中使用echo和其他命令一起使用,比如"read",它可能会忽略设置,并跳转到新的行。
Bash有一个“内置”命令叫做“echo”:
$ type echo
echo is a shell builtin
此外,还有一个“echo”命令,它是一个适当的可执行文件(也就是说,shell fork和execs /bin/echo,而不是解释echo并执行它):
$ ls -l /bin/echo
-rwxr-xr-x 1 root root 22856 Jul 21 2011 /bin/echo
两个echo对于\c和-n的行为是不同的。最好的办法是使用printf,它可以在四种不同的*NIX版本上使用:
$ printf "a line without trailing linefeed"
$ printf "a line with trailing linefeed\n"