1994-12-13 18:08:34 +00:00
|
|
|
/*
|
|
|
|
* udl - Convert EOL formats freely between MS-DOS (CR/LF), Unix/Amiga (LF),
|
|
|
|
* and Apple (CR).
|
|
|
|
*
|
|
|
|
* Usage strings.
|
|
|
|
*
|
1996-02-04 01:34:31 +00:00
|
|
|
* $Id: udluse.c,v 1.9 1996/02/04 01:34:31 gdr Exp $
|
1994-12-13 18:08:34 +00:00
|
|
|
*
|
1995-02-08 06:12:49 +00:00
|
|
|
* Copyright (c) 1993-1995 Soenke Behrens, Devin Reade
|
1994-12-13 18:08:34 +00:00
|
|
|
*/
|
|
|
|
|
1995-02-08 05:25:26 +00:00
|
|
|
#ifdef GNO
|
|
|
|
#pragma noroot
|
|
|
|
#endif
|
|
|
|
|
1994-12-13 18:08:34 +00:00
|
|
|
char use1 [] =
|
1996-02-04 01:34:31 +00:00
|
|
|
"udl 1.1.5 by Soenke Behrens, Devin Reade\n"
|
1995-02-08 05:15:36 +00:00
|
|
|
"Usage: udl -u|g|m [-Rvp] file1 [file2 ...]\n\n"
|
1994-12-13 18:08:34 +00:00
|
|
|
"Options:\n"
|
|
|
|
" -u Convert file to use LF as EOL character.\n"
|
|
|
|
" -g Convert file to use CR as EOL character.\n"
|
|
|
|
" -m Convert file to use LF/CR as EOL character.\n"
|
|
|
|
" -R Recurse through subdirectories.\n"
|
|
|
|
" -p Be pedantic.\n"
|
|
|
|
" -v Be verbose about it.\n\n"
|
1995-02-08 06:12:49 +00:00
|
|
|
"udl creates a temporary file in the directory of the original file.\n"
|
|
|
|
"The original file is overwritten after conversion.\n";
|
1994-12-13 18:08:34 +00:00
|
|
|
|
|
|
|
char use2 [] =
|
1995-02-08 05:05:49 +00:00
|
|
|
"\nFiles may contain ORCA/Shell style wildcards.\n";
|
1994-12-13 18:08:34 +00:00
|
|
|
|
|
|
|
/* End Of File */
|