diff options
author | epoch <epoch@hack.thebackupbox.net> | 2020-04-16 00:07:10 +0000 |
---|---|---|
committer | epoch <epoch@hack.thebackupbox.net> | 2020-04-16 00:07:10 +0000 |
commit | 3dcba88f53fcf9d01ce71ce838bda7697de4def9 (patch) | |
tree | c118e3c081723ba24e179676204f2457585b20e5 /choose | |
parent | 245e54a0bdb845e336cc5d62b93ec8a1d4330695 (diff) | |
parent | 56924803638d20eb380d0bd7acde4a2a6349f38e (diff) | |
download | uritools-3dcba88f53fcf9d01ce71ce838bda7697de4def9.tar.gz uritools-3dcba88f53fcf9d01ce71ce838bda7697de4def9.zip |
Merge branch 'master' of /var/git/uritools
Diffstat (limited to 'choose')
-rwxr-xr-x | choose | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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" |