aboutsummaryrefslogtreecommitdiff
path: root/.repos/st/st-copyout
diff options
context:
space:
mode:
authorMarvin Borner2022-05-31 14:34:49 +0200
committerMarvin Borner2022-05-31 14:39:35 +0200
commita56b6a121b31b82dcf7279e6eea60bbca1852fc5 (patch)
tree7627bb839310c4a4a3632b378ebe87bc031f61ff /.repos/st/st-copyout
parentb8be82d9113dd0fec9021aa573039cc64dbd849a (diff)
Sync
Diffstat (limited to '.repos/st/st-copyout')
-rwxr-xr-x.repos/st/st-copyout13
1 files changed, 13 insertions, 0 deletions
diff --git a/.repos/st/st-copyout b/.repos/st/st-copyout
new file mode 100755
index 0000000..0d19e5a
--- /dev/null
+++ b/.repos/st/st-copyout
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Using external pipe with st, give a dmenu prompt of recent commands,
+# allowing the user to copy the output of one.
+# xclip required for this script.
+# By Jaywalker and Luke
+tmpfile=$(mktemp /tmp/st-cmd-output.XXXXXX)
+trap 'rm "$tmpfile"' 0 1 15
+sed -n "w $tmpfile"
+sed -i 's/\x0//g' "$tmpfile"
+ps1="$(grep "\S" "$tmpfile" | tail -n 1 | sed 's/^\s*//' | cut -d' ' -f1)"
+chosen="$(grep -F "$ps1" "$tmpfile" | sed '$ d' | tac | dmenu -p "Copy which command's output?" -i -l 10 | sed 's/[^^]/[&]/g; s/\^/\\^/g')"
+eps1="$(echo "$ps1" | sed 's/[^^]/[&]/g; s/\^/\\^/g')"
+awk "/^$chosen$/{p=1;print;next} p&&/$eps1/{p=0};p" "$tmpfile" | xclip -selection clipboard