File: sfxedit

package info (click to toggle)
awe 0.4.2c-3
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 1,576 kB
  • ctags: 3,918
  • sloc: ansic: 19,225; tcl: 2,105; sh: 369; makefile: 104
file content (15 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

#
# A simple .SF2 editor
#

/usr/lib/awe/sf2text $1 > /tmp/$$.tmp-text
if [ "$EDITOR" != "" ]; then
	$EDITOR /tmp/$$.tmp-text
else
	/usr/bin/editor /tmp/$$.tmp-text
fi
rm -f /tmp/$$.tmp-text

# End of file.