Artifact 9f63b6b6f61e63a86cec52f85592c09e0b01a8c3a1f8ca7595f182ec1a9a0c91:
- 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]
#!/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