texlive: update to 2018 and update poppler patches to work with 0.64
[termux-packages] / packages / termux-tools / termux-open-url
CommitLineData
59f0d218
FF
1#!/bin/sh
2
3if [ $# != 1 ]; then
4 echo 'usage: termux-open-url <url>'
5 echo 'Open an URL for viewing.'
6 exit 1
7fi
8
91c3e293 9am start --user 0 -a android.intent.action.VIEW -d $1 > /dev/null