preload-hacks: Some patches to make it work.
[termux-packages] / packages / termux-tools / termux-open-url
1 #!/bin/sh
2
3 if [ $# != 1 ]; then
4 echo 'usage: termux-open-url <url>'
5 echo 'Open an URL for viewing.'
6 exit 1
7 fi
8
9 am start --user 0 -a android.intent.action.VIEW -d $1 > /dev/null