my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 25 lines 293 B view raw
1#!/bin/sh 2 3case $1 in 4 install) 5 xbps-install -S "$2" 6 ;; 7 reinstall) 8 xbps-install -f "$2" 9 ;; 10 remove) 11 xbps-remove -R "$2" 12 ;; 13 clean) 14 xbps-remove -Oo 15 vkpurge rm all 16 ;; 17 update) 18 xbps-install -Suv 19 ;; 20 search) 21 xbps-query -v -Rs "$2" 22 ;; 23 *) 24 echo 'command not found' 25esac