mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9 lines
93 B
Bash
9 lines
93 B
Bash
#!/bin/sh
|
|
ed $1 <<XXXEOF > /dev/null
|
|
/#! \/bin\/sh
|
|
1,.-1d
|
|
w
|
|
q
|
|
XXXEOF
|
|
/bin/sh $1 > /dev/null
|