mirror of
git://git.suckless.org/sbase
synced 2026-01-26 13:43:17 +00:00
Using an EXEC variable for every test make easy to run tools to debug issues like for example using EXEC=valgrind ./0025-ed.sh. Some tests for ed had a wrong path to the ed binary and they were not testing the actual ed but the system one.
12 lines
99 B
Bash
Executable File
12 lines
99 B
Bash
Executable File
#!/bin/sh
|
|
|
|
$EXEC ../ed -s /dev/null <<EOF | (read a && test $a = a)
|
|
a
|
|
1
|
|
2
|
|
3
|
|
.
|
|
1w !sed s/1/a/
|
|
w
|
|
EOF
|