aboutsummaryrefslogtreecommitdiffstats
path: root/st-cpycmd
blob: 3fb38c421533a99b85a5a7a3d298be1926981193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

# Using external pipe with st, give a dmenu prompt of recent commands,
# allowing the user to copy the command lines inputed
# xclip required for this script.
# By joe, adapted from st-cpyout by Jaywalker and Luke

mem=$(sed '{s/^ $//g;s/\x0//g;}')
ps1=$(printf "%s" "$mem" |
	tail -n1 |
	sed -E 's/([%,#,>,$]).*/\1/')
chosen=$(printf "%s" "$mem" |
	grep -F "$ps1" |
	sed '$ d' |
	tac |
	dmenu -i -l 10 -m 0)
if [ -n "$chosen" ]; then
	cmd=$(printf "%s" "$chosen" | sed "{s/^$ps1 //;s/ $//;}")
	printf "%s" "$cmd" | xclip -selection clipboard
	herbe=$(printf "  clipped cmd : %.10s" "$cmd")
	if [ "$(printf "%s" "$cmd" | wc -c)" -gt 10 ]; then
		herbe="${herbe}..."
	fi
	herbe "$herbe" &
fi