主頁(yè) > 知識(shí)庫(kù) > shell腳本echo輸出不換行功能增強(qiáng)實(shí)例

shell腳本echo輸出不換行功能增強(qiáng)實(shí)例

熱門(mén)標(biāo)簽:鶴崗400電話申請(qǐng) 怎么在百度地圖標(biāo)注公司的位置 外呼電話系統(tǒng)怎么操作 天津電話外呼系統(tǒng)排名 百度地圖標(biāo)注直線距離 智能電銷機(jī)器人有用嗎 德陽(yáng)400電話申請(qǐng) 測(cè)繪地圖標(biāo)注名稱 商機(jī)地圖標(biāo)注

這是第8/101個(gè)腳本

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.
這個(gè)腳本很簡(jiǎn)單,就是可以用3種不同的函數(shù)(方法)來(lái)實(shí)現(xiàn),輸出后不換行。

您可能感興趣的文章:
  • PowerShell中刪除空格、點(diǎn)號(hào)、減號(hào)和換行方法代碼實(shí)例
  • PowerShell腳本反引號(hào)用法實(shí)例:隨時(shí)隨地給代碼換行
  • shell中長(zhǎng)命令的換行處理方法示例

標(biāo)簽:武漢 六盤(pán)水 滁州 丹東 優(yōu)質(zhì)小號(hào) 鎮(zhèn)江 百色 自貢

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《shell腳本echo輸出不換行功能增強(qiáng)實(shí)例》,本文關(guān)鍵詞  shell,腳本,echo,輸出,不,換行,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《shell腳本echo輸出不換行功能增強(qiáng)實(shí)例》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于shell腳本echo輸出不換行功能增強(qiáng)實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章