nano: Update from 2.7.5 to 2.8.0
[termux-packages] / packages / termux-tools / termux-fix-shebang
... / ...
CommitLineData
1#!/bin/sh
2
3if [ $# = 0 -o "$1" = "-h" ]; then
4 echo 'usage: termux-fix-shebang <files>'
5 echo 'Rewrite shebangs in specified files for running under Termux,'
6 echo 'which is done by rewriting #!*/bin/binary to #!$PREFIX/bin/binary.'
7 exit 1
8fi
9
10for file in $@; do
11 # Do realpath to avoid breaking symlinks (modify original file):
12 sed -i -E "1 s@^#\!(.*)/bin/(.*)@#\!/data/data/com.termux/files/usr/bin/\2@" `realpath $@`
13done