• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    shell脚本echo输出不换行功能增强实例

    这是第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种不同的函数(方法)来实现,输出后不换行。

    您可能感兴趣的文章:
    • PowerShell中删除空格、点号、减号和换行方法代码实例
    • PowerShell脚本反引号用法实例:随时随地给代码换行
    • shell中长命令的换行处理方法示例
    上一篇:数值运算shell脚本
    下一篇:判断输入的日期是否正确的shell脚本
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    shell脚本echo输出不换行功能增强实例 shell,脚本,echo,输出,不,换行,