Perlシェルコマンド呼び出しのメソッド概要
2022-01-29 16:23:03
I. システム
perl は system を使ってシェルコマンドを呼び出すこともできます。これは awk の system と同じで、戻り値は呼び出したコマンドの終了ステータスになります。
コピーコード
コードは以下の通りです。
[root@AX3sp2 ~]# cat aa.pl
#! /usr/bin/perl -w
$file = "wt.pl";
system("ls -l wt.pl");
$result = system "ls -l $file";
print "$result \n"; # Output the exit status of the command
system "date";
[root@AX3sp2 ~]# perl aa.pl
-rwxr-xr-x 1 root root 126 12-16 15:12 wt.pl
-rwxr-xr-x 1 root root 126 12-16 15:12 wt.pl
0
Thu, Dec 16, 2010 15:58:34 CST
II. バッククォート
perl のシステム関数は awk と同じで、コマンドの出力を返しません。
コマンドの出力を得るには、シェル自身と同じように ` `
コピーコード
コードは以下の通りです。
[root@AX3sp2 ~]# cat bb.pl
#! /usr/bin/perl
print `date`;
print "this is test \n";
[root@AX3sp2 ~]# perl bb.pl
Thu, Dec 16, 2010 15:51:59 CST
This is test
iii.
最後に、perlはexecを使用してシェルコマンドを呼び出すこともできます。違いは、exec を呼び出した後、perl は直ちに終了し、残りのコードの実行を継続しないことです。
コピーコード
コードは以下の通りです。
[root@AX3sp2 ~]# cat cc.pl
#! /usr/bin/perl
exec ("echo this is test");
print "good bye ! \n"; #This sentence will not be output
[root@AX3sp2 ~]# perl cc.pl
This is test
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン