2006-06-02 02:30:42 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-21 03:22:26 +08:00
|
|
|
/*
|
2001-02-23 07:37:30 +08:00
|
|
|
* dos2unix for BusyBox
|
|
|
|
*
|
|
|
|
* dos2unix '\n' convertor 0.5.0
|
2006-03-15 05:49:18 +08:00
|
|
|
* based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997)
|
2001-02-23 07:37:30 +08:00
|
|
|
* Copyright 1997,.. by Peter Hanecak <hanecak@megaloman.sk>.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* dos2unix filters reading input from stdin and writing output to stdout.
|
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-03-15 05:49:18 +08:00
|
|
|
*/
|
2000-09-21 03:22:26 +08:00
|
|
|
|
2011-03-31 20:43:25 +08:00
|
|
|
//usage:#define dos2unix_trivial_usage
|
|
|
|
//usage: "[-ud] [FILE]"
|
|
|
|
//usage:#define dos2unix_full_usage "\n\n"
|
|
|
|
//usage: "Convert FILE in-place from DOS to Unix format.\n"
|
|
|
|
//usage: "When no file is given, use stdin/stdout.\n"
|
|
|
|
//usage: "\n -u dos2unix"
|
|
|
|
//usage: "\n -d unix2dos"
|
|
|
|
//usage:
|
|
|
|
//usage:#define unix2dos_trivial_usage
|
|
|
|
//usage: "[-ud] [FILE]"
|
|
|
|
//usage:#define unix2dos_full_usage "\n\n"
|
|
|
|
//usage: "Convert FILE in-place from Unix to DOS format.\n"
|
|
|
|
//usage: "When no file is given, use stdin/stdout.\n"
|
|
|
|
//usage: "\n -u dos2unix"
|
|
|
|
//usage: "\n -d unix2dos"
|
|
|
|
|
2007-05-27 03:00:18 +08:00
|
|
|
#include "libbb.h"
|
2000-09-21 03:22:26 +08:00
|
|
|
|
2010-10-01 05:31:12 +08:00
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
2007-06-04 18:16:52 +08:00
|
|
|
enum {
|
2006-06-02 02:30:42 +08:00
|
|
|
CT_UNIX2DOS = 1,
|
|
|
|
CT_DOS2UNIX
|
2007-06-04 18:16:52 +08:00
|
|
|
};
|
2005-10-15 18:23:55 +08:00
|
|
|
|
2005-09-01 11:11:19 +08:00
|
|
|
/* if fn is NULL then input is stdin and output is stdout */
|
2008-02-17 22:31:50 +08:00
|
|
|
static void convert(char *fn, int conv_type)
|
2001-07-25 15:22:55 +08:00
|
|
|
{
|
2005-09-01 11:11:19 +08:00
|
|
|
FILE *in, *out;
|
2006-06-02 02:30:42 +08:00
|
|
|
int i;
|
2008-06-14 12:28:41 +08:00
|
|
|
char *temp_fn = temp_fn; /* for compiler */
|
|
|
|
char *resolved_fn = resolved_fn;
|
2001-04-12 10:26:04 +08:00
|
|
|
|
2007-06-04 18:16:52 +08:00
|
|
|
in = stdin;
|
|
|
|
out = stdout;
|
2001-04-12 10:26:04 +08:00
|
|
|
if (fn != NULL) {
|
2008-06-14 12:28:41 +08:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
resolved_fn = xmalloc_follow_symlinks(fn);
|
|
|
|
if (resolved_fn == NULL)
|
|
|
|
bb_simple_perror_msg_and_die(fn);
|
2008-07-22 07:05:26 +08:00
|
|
|
in = xfopen_for_read(resolved_fn);
|
2008-06-14 12:28:41 +08:00
|
|
|
fstat(fileno(in), &st);
|
|
|
|
|
|
|
|
temp_fn = xasprintf("%sXXXXXX", resolved_fn);
|
2010-10-22 19:27:16 +08:00
|
|
|
i = xmkstemp(temp_fn);
|
|
|
|
if (fchmod(i, st.st_mode) == -1)
|
2008-06-14 12:28:41 +08:00
|
|
|
bb_simple_perror_msg_and_die(temp_fn);
|
2010-10-22 19:27:16 +08:00
|
|
|
|
2009-11-16 06:28:11 +08:00
|
|
|
out = xfdopen_for_write(i);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
|
2006-06-02 02:30:42 +08:00
|
|
|
while ((i = fgetc(in)) != EOF) {
|
|
|
|
if (i == '\r')
|
2005-09-01 11:11:19 +08:00
|
|
|
continue;
|
2008-03-17 16:42:43 +08:00
|
|
|
if (i == '\n')
|
2007-07-21 21:27:44 +08:00
|
|
|
if (conv_type == CT_UNIX2DOS)
|
2005-09-01 11:11:19 +08:00
|
|
|
fputc('\r', out);
|
2006-06-02 02:30:42 +08:00
|
|
|
fputc(i, out);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fn != NULL) {
|
2006-03-15 05:49:18 +08:00
|
|
|
if (fclose(in) < 0 || fclose(out) < 0) {
|
2008-06-14 12:28:41 +08:00
|
|
|
unlink(temp_fn);
|
2008-02-17 22:31:50 +08:00
|
|
|
bb_perror_nomsg_and_die();
|
2006-06-02 02:30:42 +08:00
|
|
|
}
|
2008-06-14 12:28:41 +08:00
|
|
|
xrename(temp_fn, resolved_fn);
|
|
|
|
free(temp_fn);
|
|
|
|
free(resolved_fn);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:05:36 +08:00
|
|
|
int dos2unix_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-28 22:18:53 +08:00
|
|
|
int dos2unix_main(int argc UNUSED_PARAM, char **argv)
|
2001-07-25 15:22:55 +08:00
|
|
|
{
|
2007-07-21 21:27:44 +08:00
|
|
|
int o, conv_type;
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2005-09-01 11:11:19 +08:00
|
|
|
/* See if we are supposed to be doing dos2unix or unix2dos */
|
2008-02-17 22:31:50 +08:00
|
|
|
conv_type = CT_UNIX2DOS;
|
2006-10-04 05:00:43 +08:00
|
|
|
if (applet_name[0] == 'd') {
|
2008-02-17 22:31:50 +08:00
|
|
|
conv_type = CT_DOS2UNIX;
|
2001-07-25 15:22:55 +08:00
|
|
|
}
|
2007-08-16 18:35:17 +08:00
|
|
|
|
2007-07-21 21:27:44 +08:00
|
|
|
/* -u convert to unix, -d convert to dos */
|
2007-08-16 18:37:49 +08:00
|
|
|
opt_complementary = "u--d:d--u"; /* mutually exclusive */
|
2007-08-18 23:32:12 +08:00
|
|
|
o = getopt32(argv, "du");
|
2005-09-01 11:11:19 +08:00
|
|
|
|
|
|
|
/* Do the conversion requested by an argument else do the default
|
|
|
|
* conversion depending on our name. */
|
|
|
|
if (o)
|
2007-07-21 21:27:44 +08:00
|
|
|
conv_type = o;
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2009-11-28 22:18:53 +08:00
|
|
|
argv += optind;
|
2007-06-04 18:16:52 +08:00
|
|
|
do {
|
|
|
|
/* might be convert(NULL) if there is no filename given */
|
2009-11-28 22:18:53 +08:00
|
|
|
convert(*argv, conv_type);
|
2010-07-18 04:43:42 +08:00
|
|
|
} while (*argv && *++argv);
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2008-02-17 22:31:50 +08:00
|
|
|
return 0;
|
2001-02-23 07:37:30 +08:00
|
|
|
}
|