- 论坛徽章:
- 0
|
为什么下面的程序建立的目录结尾都有一个不可识别字符。- #!/usr/bin/env perl
- #Open a file with a filehandle
- #use IPC::System::Simple qw(system);
- open(FILE, "datebook")||die "Can't open datebook: $!\n";
- my @arr1;
- while($line = <FILE>) {
- push(@arr1,$line) if $line !~ /^#/;
- }
- for ($i=0;$i<=$#arr1;$i++) {
- #system 'mkdir','$arr1[$i]' or die "system @args failed: $?";
- system 'mkdir','$arr1[$i]';
- if ($? == -1) {
- print "failed to execute: $!\n";
- }
- elsif ($? & 127) {
- printf "child died with signal %d, %s coredump\n",
- ($? & 127), ($? & 128) ? 'with' : 'without';
- }
- else {
- printf "child exited with value %d\n", $? >> 8;
- }
- }
- close(FILE);
复制代码 datebook文件- #create directory
- check
- output
- conf
复制代码 |
|