shell程式設計之echo printf 命令

2022-05-19 05:54:57 字數 1206 閱讀 8392

shell中 echo 和printf 都能用作輸出,printf可以算是echo的增強版

顯示轉義字元

echo \""abcdef\""

>>> "abcdef"

顯示變數

age=23

echo "my age is $age"

>>>my name is 23

在使用的過程中,為了避免引起歧義,多使用$ 

顯示換行

echo 「ok\n「

echo "my name is liming"

>>>ok

>>>my name is liming

顯示結果重定向

e cho "my name is limng "> file1

printf 格式化輸出語句,但是後面必須加上回車換行符,不像echo 不用加

printf  「acbdef\n"

>>>abcdef

# format-string為雙引號

$ printf "%d %s\n" 1 "abc"

1 abc

# 單引號與雙引號效果一樣

$ printf '%d %s\n' 1 "abc"

1 abc

# 沒有引號也可以輸出

$ printf %s abcdef

abcdef

# 格式只指定了乙個引數,但多出的引數仍然會按照該格式輸出,format-string 被重用

$ printf %s abc def

abcdef

$ printf "%s\n" abc def

abcdef

$ printf "%s %s %s\n" a b c d e f g h i j

a b c

d e f

g h i

j# 如果沒有 arguments,那麼 %s 用null代替,%d 用 0 代替

$ printf "%s and %d \n"

and 0

# 如果以 %d 的格式來顯示字串,那麼會有警告,提示無效的數字,此時預設置為 0

$ printf "the first program always prints'%s,%d\n'" hello shell

-bash: printf: shell: invalid numbe

the first program always prints 'hello,0'

shell程式設計之chown

語法 chown option owner group file chown option reference rfile file 描述 chown 改變指定檔案的使用者和 或組的擁有者。例如 liujl liujl rev 1 0 mycode test ls l 總用量 0 rw rw r 1...

shell 程式設計之echo

echo it is a test echo itis a testecho it is a test read 命令從標準輸入中讀取一行,並把輸入行的每個欄位的值指定給 shell 變數 bin sh read name echo name it is a test 以上 儲存為 test.sh,...

shell 程式設計之2 1

經常可以在一些指令碼,尤其是在crontab呼叫時發現如下形式的命令呼叫 tmp test.sh tmp test.log 2 1 前半部分 tmp test.sh tmp test.log很容易理解,那麼後面的2 1是怎麼回事呢?要解釋這個問題,還是得提到檔案重定向。我們知道 和 是檔案重定向符。...