From ead8ef613ce66d51399a87d225b4cd52c6c7983e Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 23:42:46 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- common/mkiconlinks.sh | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 common/mkiconlinks.sh (limited to 'common/mkiconlinks.sh') diff --git a/common/mkiconlinks.sh b/common/mkiconlinks.sh new file mode 100755 index 00000000..b1573780 --- /dev/null +++ b/common/mkiconlinks.sh @@ -0,0 +1,39 @@ +#!/bin/sh +# usage: +# mkiconlinks linkdata icondir +# +# Linkdata file consists of lines of the form: +# filename1: filename2 filename3 ... filenameN +# +# For each line in the data file, the script creates a symbolic link to +# $(icondir)/filename1 from each of $(icondir)/filename2, +# $(icondir)/filename3 ... $(icondir)/filenameN. + +exec < $1 +cd $2 + +read NEXTLINE +while [ ! -z "$NEXTLINE" ] ; do + + # Skip lines beginning with '#' + if [ ! "${NEXTLINE:0:1}" == '#' ]; then + #Extract first field, minus its trailing colon + ORIG_FILE=`echo $NEXTLINE | awk '/:/{print $1}' | sed -e 's/://'` + + #Extract list of following fields + LINKTO=`echo $NEXTLINE | awk '/:/{for (i=2; i<=NF; i++) print $i}'` + + if [ ! -z "$LINKTO" ] ; then + echo "Creating symlinks to `pwd`/$ORIG_FILE" + fi + + fi + + #Link each pair in turn + for i in $LINKTO ; do + ln -s -f "$ORIG_FILE" "$i" + done + + read NEXTLINE +done +exit 0 -- cgit v1.2.1