perlpath.pl
来自「Unix下基于Web的管理工具」· PL 代码 · 共 29 行
PL
29 行
# perlpath.pl# This script gets run only from setup.sh in order to replace the # #!/usr/local/bin/perl line at the start of scripts with the real path to perl$ppath = $ARGV[0];if ($ARGV[1] eq "-") { @files = <STDIN>; chop(@files); }else { # Get files from command line @files = @ARGV[1..$#ARGV]; }foreach $f (@files) { open(IN, $f); @lines = <IN>; close(IN); if ($lines[0] =~ /^#!\//) { open(OUT, "> $f"); print OUT "#!$ppath\n"; for($i=1; $i<@lines; $i++) { print OUT $lines[$i]; } close(OUT); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?