Shell向Perl指令碼中傳遞變數的方法

來源:互聯網
上載者:User

方法一: In shell using export  to output a variable, and in perl using special variable %ENV to get shell's variables.
i.e.:
--- shell box---
$ /bin/ksh
# export x=Foo
# perl -e 'print $ENV{"x"}'
-------------
方法二: 象C一樣,PERL也有儲存命令列參數的數組@ARGV,可以用來分別處理各個命令列參數;與C不同的是,$ARGV[0]是第一個參數,而不是程式名本身。
    $var = $ARGV[0]; # 第一個參數
    $numargs = @ARGV; # 參數的個數
  PERL中,<>操作符實際上是對數組@ARGV的隱含的引用,其工作原理為:
1、當PERL解譯器第一次看到<>時,開啟以$ARGV[0]為檔案名稱的檔案;
2、執行動作shift(@ARGV); 即把數組@ARGV的元素向前移動一個,其元素數量即減少了一個。
3、<>操作符讀取在第一步開啟的檔案中的所有行。
4、讀完後,解譯器回到第一步重複。
  例:
    @ARGV = ("myfile1", "myfile2"); #實際上由命令列參數賦值
    while ($line = <>) {
    print ($line);
    } 
  將把檔案myfile1和myfile2的內容列印出來。

相關文章

聯繫我們

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