6 lines
100 B
Bash
Executable File
6 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
self_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
exec "$self_dir/tran" "$@"
|