From 3a9241add947cb6d24b5de7a8927517426a78795 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 25 Aug 2012 14:25:22 -0500 Subject: Move commands into "posix", "lsb", and "other" menus/directories. --- toys/sed.c | 63 -------------------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 toys/sed.c (limited to 'toys/sed.c') diff --git a/toys/sed.c b/toys/sed.c deleted file mode 100644 index c4eb1a44..00000000 --- a/toys/sed.c +++ /dev/null @@ -1,63 +0,0 @@ -/* vi: set sw=4 ts=4: - * - * sed.c - Stream editor. - * - * Copyright 2008 Rob Landley - * - * See http://www.opengroup.org/onlinepubs/009695399/utilities/sed.c - -USE_SED(NEWTOY(sed, "irne*", TOYFLAG_BIN)) - -config SED - bool "sed" - default n - help - usage: sed [-irn] {command | [-e command]...} [FILE...] - - Stream EDitor, transforms text by appling commands to each line - of input. -*/ - -#include "toys.h" -#include "lib/xregcomp.h" - -DEFINE_GLOBALS( - struct arg_list *commands; -) - -#define TT this.sed - -struct sed_command { - // Doubly linked list of commands. - struct sed_command *next, *prev; - - // Regexes for s/match/data/ and /match_begin/,/match_end/command - regex_t *match, *match_begin, *match_end; - - // For numeric ranges ala 10,20command - int first_line, last_line; - - // Which match to replace, 0 for all. - int which; - - // s and w commands can write to a file. Slight optimization: we use 0 - // instead of -1 to mean no file here, because even when there's no stdin - // our input file would take fd 0. - int outfd; - - // Data string for (saicytb) - char *data; - - // Which command letter is this? - char command; -}; - -void sed_main(void) -{ - struct arg_list *test; - - for (test = TT.commands; test; test = test->next) - dprintf(2,"command=%s\n",test->arg); - - printf("Hello world\n"); -} -- cgit v1.2.3