view toys/echo.c @ 551:2548e6e590b2

Add string to mode_t parser added new function string_to_mode(char *m_string, mode_t base) which parses a given string and converts it to a mode_t. If either + or - are part of m_string the permissions are either added or removed from base. Currently support for permision copy is missing (e.g. g=u), but all other flags should work. Format for m_string: either symbolic modes or octal representation. symbolic modes: [auog][[+-=][rwxst]*] examples: string_to_mode("u=rwx,g=rw,o=r", 0); string_to_mode("a-x", 0777); string_to_mode("0744", 0);
author Daniel Walter <d.walter@0x90.at>
date Mon, 19 Mar 2012 19:57:56 -0500
parents f062652562bd
children b24c4fe9f4fd
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * echo.c - echo supporting -n and -e.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/echo.html

USE_ECHO(NEWTOY(echo, "^?en", TOYFLAG_BIN))

config ECHO
	bool "echo"
	default y
	help
	  usage: echo [-ne] [args...]

	  Write each argument to stdout, with one space between each, followed
	  by a newline.

	  -n	No trailing newline.
	  -e	Process the following escape sequences:
	   \\	 backslash
	   \0NNN octal values (1 to 3 digits)
	   \a	 alert (beep/flash)
	   \b	 backspace
	   \c	 stop output here (avoids trailing newline)
	   \f	 form feed
	   \n	 newline
	   \r	 carriage return
	   \t	 horizontal tab
	   \v	 vertical tab
	   \xHH	 hexadecimal values (1 to 2 digits)
*/

#include "toys.h"

void echo_main(void)
{
	int i = 0, out;
	char *arg, *from = "\\abfnrtv", *to = "\\\a\b\f\n\r\t\v", *c;

	for (;;) {
		arg = toys.optargs[i];
		if (!arg) break;
		if (i++) xputc(' ');

		// Should we output arg verbatim?

		if (!(toys.optflags&2)) {
			xprintf("%s", arg);
			continue;
		}

		// Handle -e

		for (c=arg;;) {
			if (!(out = *(c++))) break;

			// handle \escapes
			if (out == '\\' && *c) {
				int n = 0, slash = *(c++);
				char *found = strchr(from, slash);
				if (found) out = to[found-from];
				else if (slash == 'c') goto done;
				else if (slash == '0') {
					out = 0;
					while (*c>='0' && *c<='7' && n++<3)
						out = (out*8)+*(c++)-'0';
				} else if (slash == 'x') {
					out = 0;							
					while (n++<2) {
						if (*c>='0' && *c<='9')
							out = (out*16)+*(c++)-'0';
						else {
							int temp = tolower(*c);
							if (temp>='a' && temp<='f') {
								out = (out*16)+temp-'a'+10;
								c++;
							} else break;
						}
					}
				// Slash in front of unknown character, print literal.
				} else c--;
			}
			xputc(out);
		}
	}

	// Output "\n" if no -n
	if (!(toys.optflags&1)) xputc('\n');
done:
	xflush();
}