elf.pl

来自「构造移动agent平台问题」· PL 代码 · 共 35 行

PL
35
字号

# This script continously renames the $input to $input.$counter,
# sleeps for one second, increments $counter and starts over until
# $counter reaches $MAX_COUNT.

# The script is used for testing the ResilientFileAppender.

$input=$ARGV[0];
$MAX_COUNT=$ARGV[1];


$counter = 0;

while($MAX_COUNT > $counter) {

  if(!(-e $input)) {
     print "File [$input] does not seem to exist. This can happen.\n";
  } 
  elsif(!(-f $input)) {
     print "[$input] does not seem to be  file.\n";
  } 
  elsif ( !(-w $input)) {
    print "File $input does not seem to be writeeble!!!!\n";
  } 
  else {
    print "Renaming $input to $input.$counter\n";
    rename $input, $input.$counter;
  }
       

  $counter++;

  sleep 1;
}

⌨️ 快捷键说明

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