aboutsummaryrefslogtreecommitdiff
path: root/rose-nativefier
blob: cc15fe433e0b938fde55c441d7f38f4146bf2193 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

test "$1" = "--help" && {
	echo "usage: rose-nativefier <alias> <url>"
}

test -z "$1" || test -z "$2" || {
	echo -e "#!/bin/sh\n\nrose $2" > /usr/bin/$1
}