summaryrefslogtreecommitdiffstats
path: root/audio/transcribe/transcribe.sh
blob: a9e9d256786266900f13927eb043655450d44a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# wrapper script for Transcribe! binary
# by B. Watson
# part of the slackbuilds.org project

set -e

# This lets us call the script with relative pathnames:
if [ -n "$1" ]; then
	arg="`readlink -f "$1"`"
fi

cd /usr/lib/transcribe
exec ./transcribe "$arg"