summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-10-22 16:11:37 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-10-22 16:11:37 +0200
commit5e582bad71187a003062d9174793fa5055a4de61 (patch)
tree913f15b6f41534f351e5f076022ef438eb988b14
parentf6be45a578433a44d8cf334c698835caa2b2270d (diff)
not used
-rw-r--r--scripts/strip-script.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/strip-script.sh b/scripts/strip-script.sh
deleted file mode 100644
index 355df0e73..000000000
--- a/scripts/strip-script.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright (c) 2007
-# Thorsten Glaser <tg@mirbsd.de>
-#
-# Provided that these terms and disclaimer and all copyright notices
-# are retained or reproduced in an accompanying document, permission
-# is granted to deal in this work without restriction, including un-
-# limited rights to use, publicly perform, distribute, sell, modify,
-# merge, give away, or sublicence.
-#
-# Advertising materials mentioning features or use of this work must
-# display the following acknowledgement:
-# This product includes material provided by Thorsten Glaser.
-# This acknowledgement does not need to be reprinted if this work is
-# linked into a bigger work whose licence does not allow such clause
-# and the author of this work is given due credit in the bigger work
-# or its accompanying documents, where such information is generally
-# kept, provided that said credits are retained.
-#
-# This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to
-# the utmost extent permitted by applicable law, neither express nor
-# implied; without malicious intent or gross negligence. In no event
-# may a licensor, author or contributor be held liable for indirect,
-# direct, other damage, loss, or other issues arising in any way out
-# of dealing in the work, even if advised of the possibility of such
-# damage or existence of a defect, except proven that it results out
-# of said person's immediate fault when using the work as intended.
-# Shell script to strip down a shell script (filter).
-
-shopt -s extglob
-cat "$@" | while read -r _line; do
- set -o noglob
- [[ $_line = \#* && $_line != @(#!)* ]] && continue
- [[ -n $_line ]] && builtin printf '%s\n' "$_line"
-done
-exit 0