Parent Directory | Revision Log
+ installing scripts file per file to filter out unwanted items
1 | bd | 1.1 | #!/bin/bash |
2 | |||
3 | TARGET="/opt/bin" | ||
4 | |||
5 | echo "Installing scripts to $TARGET." | ||
6 | pwd=`pwd` | ||
7 | cd $TARGET | ||
8 | joko | 1.2 | 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 |