X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/281d81db1a7cc4e9da9b257603e69ab0ddd80dc4..06c980d6db1267c9ba3a624162b37c14a5cd1122:/mr diff --git a/mr b/mr index fd0ba15..09c388e 100755 --- a/mr +++ b/mr @@ -100,7 +100,7 @@ the current working directory. =item -c mrconfig -Use the specified mrconfig file, instead of looking for on in your home +Use the specified mrconfig file, instead of looking for one in your home directory. =item -v @@ -314,7 +314,12 @@ sub action { push @skipped, $dir; } else { - print "mr $action: $dir\n"; + if (! $nochdir) { + print "mr $action: $dir\n"; + } + else { + print "mr $action: $dir (in subdir $directory)\n"; + } my $command="set -e; ".$lib. "my_action(){ $config{$topdir}{$subdir}{$action} ; }; my_action ". join(" ", map { s/\//\/\//g; s/"/\"/g; '"'.$_.'"' } @ARGV);