svn commit: r263864 - user/marcel/mkimg

Marcel Moolenaar marcel at FreeBSD.org
Fri Mar 28 04:42:35 UTC 2014


Author: marcel
Date: Fri Mar 28 04:42:34 2014
New Revision: 263864
URL: http://svnweb.freebsd.org/changeset/base/263864

Log:
  Use :- and not :! for pipes. ! needs to be escaped, which adds to the
  hassle.

Modified:
  user/marcel/mkimg/mkimg.c

Modified: user/marcel/mkimg/mkimg.c
==============================================================================
--- user/marcel/mkimg/mkimg.c	Fri Mar 28 04:19:06 2014	(r263863)
+++ user/marcel/mkimg/mkimg.c	Fri Mar 28 04:42:34 2014	(r263864)
@@ -106,7 +106,7 @@ usage(const char *why)
 	    "size\n");
 	fprintf(stderr, "\t<t>[/<l>]:=<file>\t-  partition content and size "
 	    "are determined\n\t\t\t\t   by the named file\n");
-	fprintf(stderr, "\t<t>[/<l>]:!<cmd>\t-  partition content and size "
+	fprintf(stderr, "\t<t>[/<l>]:-<cmd>\t-  partition content and size "
 	    "are taken from\n\t\t\t\t   the output of the command to run\n");
 	fprintf(stderr, "\t    where:\n");
 	fprintf(stderr, "\t\t<t>\t-  scheme neutral partition type\n");
@@ -144,7 +144,7 @@ pwr_of_two(u_int nr)
  *	kind	  the interpretation of the contents specification
  *		  ':'   contents holds the size of an empty partition
  *		  '='   contents holds the name of a file to read
- *		  '!'   contents holds a command to run; the output of
+ *		  '-'   contents holds a command to run; the output of
  *			which is the contents of the partition.
  *	contents  the specification of a partition's contents
  */
@@ -185,7 +185,7 @@ parse_part(const char *spec)
 	case '=':
 		part->kind = PART_KIND_FILE;
 		break;
-	case '!':
+	case '-':
 		part->kind = PART_KIND_PIPE;
 		break;
 	default:


More information about the svn-src-user mailing list