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