Artifact 21c4e58c619ee8bfa9ba58614951bfdf402eb12790c493957198594fca8970d0:
- Executable file mttroot/mtt/bin/trans/mtt_get_subsystems — part of check-in [06ed7cb0b6] at 2000-09-02 15:21:31 on branch origin/master — Added -strip option (user: gawthrop@users.sourceforge.net, size: 421) [annotate] [blame] [check-ins using]
#!/bin/sh
# Gets the subsystems
while [ -n "`echo $1 | grep '^-'`" ]; do
case $1 in
-strip )
strip=yes;
;;
*)
echo "$1 is an invalid argument - ignoring";
exit ;;
esac
shift
done
subsystems=`sh $1_type.sh 'echo ' ' ' | awk '{if (NR>1) print $2}'`
if [ -n "$strip" ]; then
echo $subsystems | sed "s/$1_//" | sed "s/ $1_/ /g"
else
echo $subsystems
fi