码迷,mamicode.com
首页 > 其他好文 > 详细

参考termux中包管理命令的伪装修改的arch版包管理命令

时间:2017-11-10 01:45:52      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:tor   --   rem   auto   $@   logs   sea   /usr   term   

#!/data/data/com.termux/files/usr/bin/sh
set -e -u

show_help() {
        echo "This help message is useless, please read the content of /bin/pacman"
        exit 1
}

if [ $# = 0 ]; then show_help; fi
CMD="$1"
shift 1

case "$CMD" in
        -h) show_help;;
        -Sy) apt-get update;;
        -S) apt-get install $@;;
        -Syu) apt-get update; apt-get upgrade;;
        -Q) dpkg -l $@;;
        -Ql) dpkg -L $@;;
        -Qo) dpkg -S $@;;
        -Ss) apt-cache search $@;;
        -Si) apt-cache showpkg $@;;
        -Rns) apt-get autoremove --purge $@;;
        *) echo "Unknown command: ‘$CMD‘ (run ‘packages help‘ for usage information)";;
esac

 

参考termux中包管理命令的伪装修改的arch版包管理命令

标签:tor   --   rem   auto   $@   logs   sea   /usr   term   

原文地址:http://www.cnblogs.com/vanwoos/p/7812143.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!