Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Mar 2014 04:42:35 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r263864 - user/marcel/mkimg
Message-ID:  <201403280442.s2S4gZ5h073928@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403280442.s2S4gZ5h073928>