91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

shell腳本如何實現echo輸出不換行功能

發布時間:2021-08-27 11:35:59 來源:億速云 閱讀:455 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“shell腳本如何實現echo輸出不換行功能”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“shell腳本如何實現echo輸出不換行功能”這篇文章吧。

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.

以上是“shell腳本如何實現echo輸出不換行功能”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

历史| 新竹县| 两当县| 岢岚县| 亚东县| 原阳县| 古田县| 临城县| 陕西省| 沁源县| 松潘县| 桃园县| 塘沽区| 上犹县| 福安市| 合肥市| 安阳市| 黔江区| 临桂县| 即墨市| 上饶县| 清徐县| 银川市| 金阳县| 通州市| 高邑县| 海南省| 闵行区| 连山| 洞口县| 灵石县| 雅安市| 咸宁市| 二连浩特市| 股票| 东港市| 仙桃市| 修武县| 喀什市| 曲麻莱县| 连江县|