Changeset 1304 in kBuild
- Timestamp:
- Dec 2, 2007 12:26:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sed/sed/sed.c
r1301 r1304 119 119 disable all GNU extensions.\n")); 120 120 #ifndef CONFIG_WITHOUT_O_OPT 121 fprintf(out, _(" -o, --output=file, --output-text=file, --output-binary=file\n\ 122 use the specified file instead of stdout; the first two uses\n\ 123 uses the default text/binary mode.\n")); 121 fprintf(out, _(" -o, --output=file, --append=file, --output-text=file,\n")); 122 fprintf(out, _(" --output-binary=file, --append-text=file, append-binary=file\n\ 123 use the specified file instead of stdout; the first\n\ 124 three uses the default text/binary mode.\n")); 124 125 #endif 125 126 fprintf(out, _(" -r, --regexp-extended\n\ … … 185 186 {"output-binary", 1, NULL, 300}, 186 187 {"output-text", 1, NULL, 301}, 188 {"append", 1, NULL, 302}, 189 {"append-binary", 1, NULL, 303}, 190 {"append-text", 1, NULL, 304}, 187 191 #endif 188 192 {"version", 0, NULL, 'v'}, … … 298 302 sed_stdout = ck_fopen (optarg, "wt", true /* fail on error */); 299 303 break; 304 305 case 302: 306 sed_stdout = ck_fopen (optarg, "a", true /* fail on error */); 307 break; 308 309 case 303: 310 sed_stdout = ck_fopen (optarg, "ab", true /* fail on error */); 311 break; 312 313 case 304: 314 sed_stdout = ck_fopen (optarg, "at", true /* fail on error */); 315 break; 300 316 #endif 301 317
Note:
See TracChangeset
for help on using the changeset viewer.