mirror of
https://github.com/QSCTech/zjunet.git
synced 2026-01-22 11:44:48 +08:00
19 lines
183 B
Bash
19 lines
183 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# init
|
||
|
|
CFG="$HOME/.zjunetrc"
|
||
|
|
touch $CFG
|
||
|
|
|
||
|
|
# dispatch
|
||
|
|
case "$1" in
|
||
|
|
add)
|
||
|
|
;;
|
||
|
|
edit)
|
||
|
|
;;
|
||
|
|
delete)
|
||
|
|
;;
|
||
|
|
list)
|
||
|
|
cat $CFG
|
||
|
|
;;
|
||
|
|
esac
|