bin/vpm
#!/bin/sh case $1 in install) xbps-install -S "$2" ;; reinstall) xbps-install -f "$2" ;; remove) xbps-remove -R "$2" ;; clean) xbps-remove -Oo vkpurge rm all ;; update) xbps-install -Suv ;; search) xbps-query -v -Rs "$2" ;; *) echo 'command not found' esac