crontab中使用環境變數的方法(手動執行shell指令碼可以,在定時任務中不行)

來源:互聯網
上載者:User

在crontab中如何引用已定義的環境變數
   一個shell指令碼 /root/test/shell/test_crontab_env.sh,內部使用了一個環境變數 TEST_CRONTAB_ENV=test_crontab_env
   且TEST_CRONTAB_ENV存在於 /etc/profile 中
   如:
   #!/bin/bash
   echo "`date +%Y-%m-%d" "%H:%M:%S` $TEST_CRONTAB_ENV" >> /tmp/test_crontab_env.file
   手動執行, 運行結果:
   2010-09-04 11:23:38 test_crontab_env
   添加到 crontab 中如下
   */1 * * * * /root/test/shell/test_crontab_env.sh
   結果:
   $> cat /tmp/test_crontab_env.file
   2010-09-04 11:25:01
   2010-09-04 11:26:01
   ...
   這裡引用的環境變數無效了.   

   使環境變數在crontab中生效的方法:
   1.傳參的方式
     crontab中
       */1 * * * * /root/test/shell/test_crontab_env.sh "test_crontab_env"
     test_crontab_env.sh 中
       #!/bin/bash
       echo "`date +%Y-%m-%d" "%H:%M:%S` $1" >> /tmp/test_crontab_env.file
   2.在該shell指令碼中定義環境變數
     test_crontab_env.sh 中
       #!/bin/bash
       TEST_CRONTAB_ENV=test_crontab_env
       echo "`date +%Y-%m-%d" "%H:%M:%S` $TEST_CRONTAB_ENV" >> /tmp/test_crontab_env.file
   3.在該shell指令碼中載入環境變數檔案
     #!/bin/bash
     source /etc/profile
     echo "`date +%Y-%m-%d" "%H:%M:%S` $TEST_CRONTAB_ENV" >> /tmp/test_crontab_env.file

   個人覺得還是第三種方法最實用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.