summaryrefslogtreecommitdiff
path: root/choose
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-04-06 19:13:13 -0500
committerepoch <epoch@hacking.allowed.org>2020-04-06 19:13:13 -0500
commit56924803638d20eb380d0bd7acde4a2a6349f38e (patch)
tree7152219cac9e137b0dbb423153ee276840cb5332 /choose
parent8111431c7b8932f756ffe2723f903d45027e3933 (diff)
downloaduritools-56924803638d20eb380d0bd7acde4a2a6349f38e.tar.gz
uritools-56924803638d20eb380d0bd7acde4a2a6349f38e.zip
added the "choose" script as copy_start_nevermind uses it
Diffstat (limited to 'choose')
-rwxr-xr-xchoose7
1 files changed, 7 insertions, 0 deletions
diff --git a/choose b/choose
new file mode 100755
index 0000000..1b989fd
--- /dev/null
+++ b/choose
@@ -0,0 +1,7 @@
+#!/bin/sh
+### this script is meant to take a \n delimited list of things
+### then give the user a way of selecting on of them.
+### it should output the selection on a line by itself.
+### and use $1 as the message to give to the user.
+sed 's|,|\\,|g;s|:|\\:|g' | tr '\n' ',' | rev | cut -b2- | rev | tr '\n' '\0' | xargs -0 xmessage -nearmouse "$1" -print -buttons
+#dmenu -p "$1"