摘要: #!/bin/bashif [ "$(id -u)" != "0" ]; then echo "Insufficient permissions. Use sudo or root account." 1>&2 exit 1fimy_default_prompt=0if test "$#" != "0"; then if test "$#" != "1" -o "$1" != "--force";... 阅读全文
posted @ 2014-05-17 20:53 砺能 阅读(1434) 评论(0) 推荐(0) 编辑