📄 perlpath.pl
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -