File: mkscripts.sh

package info (click to toggle)
ed 0.2-17
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,548 kB
  • ctags: 704
  • sloc: ansic: 7,316; makefile: 201; sh: 179
file content (81 lines) | stat: -rwxr-xr-x 1,497 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh -
# This script generates ed test scripts, with extensions .ed and .red, from 
# .t and .err files, respectively.

PATH="/bin:/usr/bin:/usr/local/bin/:."
ED=$1
TMP=$2
TESTDIR=`pwd`

if test  ! -f $ED; then
	echo "$ED: cannot execute"
	exit 1
fi

for i in *.t; do
#	base=${i%.*}
#	base=`echo $i | sed 's/\..*//'`
	base=`expr $i : '\([^.]*\)'`
	(
	echo "#!/bin/sh -"
	echo "$ED - <<'EOT'"
	echo H
	echo "r ${TESTDIR}/$base.d"
	cat $i
	echo "w $base.o"
	echo EOT
	) >${TMP}$base.ed
	chmod +x ${TMP}$base.ed
# The following is pretty ugly way of doing the above, and not appropriate 
# use of ed  but the point is that it can be done...
#	base=`$ED - \!"echo $i" <<-EOF
#		s/\..*
#	EOF`
#	$ED - <<-EOF
#		a
#		#!/bin/sh -
#		$ED - <<'EOT'
#		H
#		r ${TESTDIR}/$base.d
#		w $base.o
#		EOT
#		.
#		-2r $i
#		w ${TMP}$base.ed
#		!chmod +x ${TMP}$base.ed
#	EOF
done

for i in *.err; do
#	base=${i%.*}
#	base=`echo $i | sed 's/\..*//'`
	base=`expr $i : '\([^.]*\)'`
	(
	echo "#!/bin/sh -"
	echo "$ED - <<'EOT'"
	echo H
	echo "r ${TESTDIR}/$base.err"
	cat $i
	echo "w $base.ro"
	echo EOT
	) >${TMP}$base.red
	chmod +x ${TMP}$base.red
# The following is pretty ugly way of doing the above, and not appropriate 
# use of ed  but the point is that it can be done...
#	base=`$ED - \!"echo $i" <<-EOF
#		s/\..*
#	EOF`
#	$ED - <<-EOF
#		a
#		#!/bin/sh -
#		$ED - <<'EOT'
#		H
#		r ${TESTDIR}/$base.err
#		w $base.ro
#		EOT
#		.
#		-2r $i
#		w ${TMP}${base}.red
#		!chmod +x ${TMP}${base}.red
#	EOF
done