Differences From Artifact [7f7f09d195]:
- Executable file mttroot/mtt/lib/xfig/Basic/MAKE_COMPONENT — part of check-in [04e907332b] at 1999-07-25 23:46:36 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 187) [annotate] [blame] [check-ins using]
To Artifact [9f63b6b6f6]:
- Executable file mtt/lib/xfig/Thermal/MAKE_COMPONENT — 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: 323) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/xfig/Basic/MAKE_COMPONENT — part of check-in [749371a8cf] at 1999-07-28 05:46:52 on branch origin/master — Now handles unnamed 0 and 1 (user: gawthrop@users.sourceforge.net, size: 323) [annotate] [blame] [check-ins using]
- Executable file mttroot/mtt/lib/xfig/Thermal/MAKE_COMPONENT — part of check-in [ad9b7e569f] at 2000-12-28 10:11:20 on branch origin/master — put under RCS (user: gawthrop@users.sourceforge.net, size: 323) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | #!/bin/sh ## Makes a new component if [ -z "$2" ]; then label=$1 else label=$2 fi | > | | > > | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh ## Makes a new component if [ -z "$2" ]; then label=$1 else label=$2 fi if [ "$1" = "0" ]||[ "$1" = "1" ]; then echo Making new component $1 with no label sed "s/TEXT/$1/" <template.txt >$1.fig else echo Making new component $1 with label $label sed "s/TEXT/$1:$label/" <template.txt >$1.fig fi |