You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
309 B
10 lines
309 B
#!/bin/sh
|
|
|
|
if [ $# = 0 -o "$1" = "-h" ]; then
|
|
echo 'usage: termux-fix-shebang <files>'
|
|
echo 'Rewrite shebangs in specified files for running under Termux,'
|
|
echo 'which is done by rewriting #!*/bin/binary to #!$PREFIX/bin/binary.'
|
|
exit 1
|
|
fi
|
|
|
|
sed -i -E "s@^#\!(.*)/bin/(.*)@#\!@TERMUX_PREFIX@/bin/\2@" $@
|
|
|