about summary refs log tree commit diff
path: root/xq
diff options
context:
space:
mode:
Diffstat (limited to 'xq')
-rwxr-xr-xxq6
1 files changed, 1 insertions, 5 deletions
diff --git a/xq b/xq
index e3db2b9..be68aba 100755
--- a/xq
+++ b/xq
@@ -1,10 +1,6 @@
 #!/bin/sh
 # xq [-R] PKGS... - query information about XBPS package
 
-rmcol() {
-	sed 's/\x1b\[[0-9;]*[mG]//g'
-}
-
 totop() {
 	sed -n 's/^'"$1"'/&/p;tk;H;:k;${x;s/\n//;p};d'
 }
@@ -21,7 +17,7 @@ if [ $1 = -R ]; then
 fi
 
 for pkg; do
-	xbps-query $ADDREPO -S "$pkg" | rmcol |
+	xbps-query $ADDREPO -S "$pkg" |
 		totop short_desc |
 		totop pkgver
 	xbps-query $ADDREPO $R -x "$pkg" | sed 's/^/	/;1s/^/depends:\n/'