shell 指令碼 set 命令

來源:互聯網
上載者:User

set 命令為 shell 設定參數變數。許多命令的輸出是以空格分隔的值,如果要使用其中的某個資料域,使用 set 非常有效。

#!/bin/sh
echo the date is $(date)
set $(date)
echo the month is $2
輸出:
the date is Wed Apr 23 15:34:16 CST 2014
the month is Apr

將 date 命令的輸出設定為參數表,再通過位置參數 $2 取得月份。因為 date 命令受語言和地區的影響比較大,所以如果目的是取出月份的名字,則應該用 date +%B。

還可以利用 set 命令來控制 shell 的執行方式。其中最常用的就是 set +x,使指令碼程式跟蹤顯示當前執行的命令。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.