/[cvs]/nfo/bash/.install
ViewVC logotype

Contents of /nfo/bash/.install

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations)
Sun Nov 7 03:01:08 2004 UTC (19 years, 5 months ago) by joko
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +5 -1 lines
+ installing scripts file per file to filter out unwanted items

1 #!/bin/bash
2
3 TARGET="/opt/bin"
4
5 echo "Installing scripts to $TARGET."
6 pwd=`pwd`
7 cd $TARGET
8 for script in $pwd/*; do
9 [ $script != ${script/CVS} ] && continue
10 echo " - $script"
11 ln -s $1 $script . > /dev/null 2>&1
12 done

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed