⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perlpath.pl

📁 Unix下基于Web的管理工具
💻 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 + -