Differences From Artifact [ca21605aad]:
- Executable file mttroot/mtt/bin/trans/mtt_getsize — part of check-in [5ca7145984] at 2000-12-28 12:48:53 on branch origin/master — Put under RCS (user: gawthrop@users.sourceforge.net, size: 971) [annotate] [blame] [check-ins using] [more...]
To Artifact [59fbe2a583]:
- Executable file mtt/bin/trans/mtt_getsize — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 972) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/mtt_getsize
— part of check-in
[66bb5feadf]
at
2002-04-28 18:41:27
on branch origin/master
— Fixed [ 549658 ] awk should be gawk.
Replaced calls to awk with call to gawk. (user: geraint@users.sourceforge.net, size: 972) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
40 41 42 43 44 45 46 | fi ## The original version for external sizes. if [ "$2" = "xx" ]; then n=`mtt_getsize $1 x` N=`echo "$n * $n" | bc` else | | | 40 41 42 43 44 45 46 47 48 49 50 |
fi
## The original version for external sizes.
if [ "$2" = "xx" ]; then
n=`mtt_getsize $1 x`
N=`echo "$n * $n" | bc`
else
N=`grep "MTTN$2 " <$1_def.r | gawk '{print $3}' | sed 's/;//'`
fi
echo $N
|