Overview
| Comment: | Remove the -n echo switch due to version probs. Its not needed anyway! |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2bfe6eaf9df449089336792e2818a832 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-09-15 08:04:45.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-09-15
| ||
| 08:06:17 | Removed debug lines check-in: a26e1e44d6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 08:04:45 |
Remove the -n echo switch due to version probs. Its not needed anyway! check-in: 2bfe6eaf9d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 07:33:35 | Replace fig2dev language eps by ps to avoid version problem. check-in: e07bfbb24c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_get_subsystems
from [ea7dd9515e]
to [f462408545].
| ︙ | ︙ | |||
16 17 18 19 20 21 22 |
subsystems=`sh $1_sub.sh "echo grep " " $1_abg.m" |\
sh | awk -F '.' '{print $3}'`
if [ -n "$strip" ]; then
echo $subsystems
else
for subsystem in $subsystems; do
| | > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
subsystems=`sh $1_sub.sh "echo grep " " $1_abg.m" |\
sh | awk -F '.' '{print $3}'`
if [ -n "$strip" ]; then
echo $subsystems
else
for subsystem in $subsystems; do
# echo -n $1_$subsystem' '
echo $1_$subsystem #| awk '{printf("%s ",$1)}'
done
echo
fi
|
| ︙ | ︙ |