1
0
mirror of https://github.com/QSCTech/zjunet.git synced 2026-01-22 11:44:48 +08:00
zjunet/user.sh

19 lines
183 B
Bash
Raw Normal View History

2014-09-19 23:06:14 +08:00
#!/bin/sh
# init
CFG="$HOME/.zjunetrc"
touch $CFG
# dispatch
case "$1" in
add)
;;
edit)
;;
delete)
;;
list)
cat $CFG
;;
esac