diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | init-sh/lib.sh | 8 |
2 files changed, 10 insertions, 1 deletions
@@ -1,7 +1,8 @@ 1999-12-19 Pixel <pixel@mandrakesoft.com> * init-sh/lib.sh: removed the failsafe for not a tty stdin (not efficient) - + * init-sh/lib.sh: rewrote the perl script (now a one-liner :) + 1999-12-19 Yoann Vandoorselaere <yoann@mandrakesoft.com> * Big cleanup. * All work properly now. diff --git a/init-sh/lib.sh b/init-sh/lib.sh index f62faac..0b1f35c 100644 --- a/init-sh/lib.sh +++ b/init-sh/lib.sh @@ -87,6 +87,14 @@ CleanRules() { echo "done." } +CleanRules2() { + echo -en "\t- Cleaning msec appended line in $1 : " + + perl -ni -e '$_ eq "$ENV{COMMENT}\n" ... // or print' $1 + + echo "done." +} + CommentUserRules() { file=$1 |