]> err.no Git - moreutils/commitdiff
* zrun: Add usage message.
authorjoeyh <joeyh>
Sun, 25 Jun 2006 02:12:31 +0000 (02:12 +0000)
committerjoeyh <joeyh>
Sun, 25 Jun 2006 02:12:31 +0000 (02:12 +0000)
combine
debian/changelog
zrun

diff --git a/combine b/combine
index fb29ad40a8b4f1c40f01ae964fcb4c2e5460f501..ef16aaf57a5f15215b57ae97ca61dc14cb6c48d6 100755 (executable)
--- a/combine
+++ b/combine
@@ -122,7 +122,7 @@ if (@ARGV >= 4 && $ARGV[3] eq "_") {
 }
 
 if (@ARGV != 3) {
-       die "usage: combine file1 OP file2\n";
+       die "Usage: combine file1 OP file2\n";
 }
 
 my $file1=shift;
index 43bf1e0d6f9faf817c5bc0dd2070897624f22a88..11f68e4805ecce5b0ba8b8c70f58819c447e2506 100644 (file)
@@ -1,8 +1,9 @@
 moreutils (0.12) UNRELEASED; urgency=low
 
   * Really fix typo. Closes: #369485
+  * zrun: Add usage message.
 
- -- Joey Hess <joeyh@debian.org>  Tue, 30 May 2006 11:53:42 -0400
+ -- Joey Hess <joeyh@debian.org>  Sat, 24 Jun 2006 22:10:53 -0400
 
 moreutils (0.11) unstable; urgency=low
 
diff --git a/zrun b/zrun
index 8e6d159ff5b6f53d8d75dcbaa60d7c76341548ec..7d313e26947544bcd3b961bb49718a48a6e30371 100755 (executable)
--- a/zrun
+++ b/zrun
@@ -36,6 +36,10 @@ use File::Temp qw{tempfile};
 
 my $program = shift;
 
+if (! @ARGV) {
+       die "Usage: zrun <command> <args>\n";
+}
+
 my @argument;
 my %child;
 foreach my $argument (@ARGV) {