时间:2021-05-22
这是第8/101个脚本
There are as many ways to solve this quirky echo problem as there are pages in this book. One of my favorites is very succinct:
function echon{ echo "$*" | awk '{ printf "%s" $0 }'}You may prefer to avoid the overhead incurred when calling the awk command, however, and if you have a user-level command called printf you can use it instead:
echon(){ printf "%s" "$*"}But what if you don't have printf and you don't want to call awk? Then use the tr command:
echon(){ echo "$*" | tr -d '\n'}This method of simply chopping out the carriage return with tr is a simple and efficient solution that should be quite portable.
这个脚本很简单,就是可以用3种不同的函数(方法)来实现,输出后不换行。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
shell脚本读取数据有以下几种方式:1.键盘输入,默认2.从文件中读取3.通过管道命令传递echo的功能:\c:不换行\f:进纸\t:跳格\n:换行\表示转义
Shell脚本:1、#!指定脚本执行的shell2、#注释3、命令或语法结构echo"输入内容"echo输出空行执行:1、shell脚本shexample2、给
python3.x版本print输出不换行的格式如下:print(x,end="")其中,end=""可使输出不换行,不能省略。举例:输出结果:内容扩展:pyt
换行输出用:Console.WriteLine不换行输出用:Console.Write代码如下//在控制台上打印HelloWorld!Console.Write
一个简单的转换输出的shell脚本,从健盘输入a,b,c这种格式输出如下格式:ac复制代码代码如下:#!/bin/bashread-p'请输入:'echo$RE