diff options
Diffstat (limited to 'src/xi.sh')
-rwxr-xr-x | src/xi.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -211,6 +211,17 @@ else shift file_info $@ ;; + "info") + shift + for package in $@; do + infofile=${INSTALLED_DIR}/$package/info + [ -f $infofile ] && { + cat $infofile + } || { + printf "Package info for $package could not be found!" + } + done + ;; "verify") shift [ -z "$*" ] && set -- $(ls ${INSTALLED_DIR}) |