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

📄 fixpaths

📁 OpenSSL Source code for SFTP, SSH, and many others
💻
字号:
#!/usr/bin/perl -w## fixpaths  - substitute makefile variables into text files$usage = "Usage: $0 [-Dstring=replacement] [[infile] ...]\n";if (!defined(@ARGV)) { die ("$usage"); }# read in the command line and get some definitionswhile ($_=$ARGV[0], /^-/) {  if (/^-D/) {    # definition    shift(@ARGV);    if ( /-D(.*)=(.*)/ ) {      $def{"$1"}=$2;    } else {      die ("$usage$0: error in command line arguments.\n");    }  } else {    @cmd = split(//, $ARGV[0]); $opt = $cmd[1];    die ("$usage$0: unknown option '-$opt'\n");  }} # while parsing argumentsif (!defined(%def)) {  die ("$0: nothing to do - no substitutions listed!\n");}for $f (@ARGV) {  $f =~ /(.*\/)*(.*)$/;  open(IN, "<$f")          || die ("$0: input file $f missing!\n");  while (<IN>) {    for $s (keys(%def)) {      s#$s#$def{$s}#;    } # for $s    print;  } # while <IN>} # for $fexit 0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -