My scripts for startup, dmenu, and the command line
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #!/bin/sh
-
- if [ -z "$1" -o -z "$2" ]; then
- printf "Invalid number of arguments\n"
- exit
- fi
-
-
- case "$1" in
- pager) st -t "Page $1" -e less "/tmp/pages-$2";;
- pager) zathura "/tmp/pages-$2";;
- browser) brave-browser "/tmp/pages-$2";;
- send) cat - > /tmp/pages-$2;;
- esac
|