aboutsummaryrefslogtreecommitdiff
path: root/old/merge-template.sh
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-07-31 20:54:39 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-07-31 20:54:39 +0000
commit546354758b9a532912651b047fab6a23f0cb0a3c (patch)
treec4108b4022d6e77cd4a1d02c78860b884178efa0 /old/merge-template.sh
downloadsimplepkg-546354758b9a532912651b047fab6a23f0cb0a3c.tar.gz
simplepkg-546354758b9a532912651b047fab6a23f0cb0a3c.tar.bz2
initial import
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@1 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'old/merge-template.sh')
-rwxr-xr-xold/merge-template.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/old/merge-template.sh b/old/merge-template.sh
new file mode 100755
index 0000000..b3eaf5c
--- /dev/null
+++ b/old/merge-template.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+
+#
+# tip: to assemble a template from all slack tagfiles:
+#
+# for diskset in a ap d e f k l n t tcl x xap y; do
+# lynx -dump http://slack.sarava.org/slackware/slackware-10.2/slackware/$diskset/tagfile >> slack.template
+# done
+#
+
+if [ -z "$2" ]; then
+ echo "usage: `basename $0` <template> <base-template>"
+ exit 1
+elif [ ! -f "$1" ] || [ ! -f "$2" ]; then
+ echo error: $1 ou $2 not found
+ exit 1
+fi
+
+cp $2 $1.new
+
+cat $1 | while read line; do
+ pack="`echo $line | cut -d : -f 1`"
+ if ! grep -qe "^$pack:" $2; then
+ echo $line >> $1.new
+ fi
+done