about summary refs log tree commit diff
path: root/xls
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2014-07-30 15:54:20 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2014-07-30 15:54:20 +0200
commit8b1ac0bf2c0434749f5e7d87d9840c2030228174 (patch)
treeceb4842a64185cb6e0652a21131cf6a477fe61d9 /xls
downloadxtools-8b1ac0bf2c0434749f5e7d87d9840c2030228174.tar.gz
xtools-8b1ac0bf2c0434749f5e7d87d9840c2030228174.tar.xz
xtools-8b1ac0bf2c0434749f5e7d87d9840c2030228174.zip
initial import of xtools
Diffstat (limited to 'xls')
-rwxr-xr-xxls12
1 files changed, 12 insertions, 0 deletions
diff --git a/xls b/xls
new file mode 100755
index 0000000..126bf23
--- /dev/null
+++ b/xls
@@ -0,0 +1,12 @@
+#!/bin/sh
+# xls PKGS... - list files contained in PKGS (including binpkgs)
+
+BRANCH=$(git symbolic-ref -q --short HEAD 2>/dev/null)
+
+for pkg; do
+	xbps-query \
+		--repository=hostdir/binpkgs/$BRANCH \
+		--repository=../hostdir/binpkgs/$BRANCH \
+		--repository=../../hostdir/binpkgs/$BRANCH \
+		-f $pkg
+done