diff options
Diffstat (limited to 'abraham-porter.sh')
-rwxr-xr-x | abraham-porter.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/abraham-porter.sh b/abraham-porter.sh index 7aef841..0669391 100755 --- a/abraham-porter.sh +++ b/abraham-porter.sh @@ -23,7 +23,8 @@ NO_WANT_ANOTHER_PROVIDED=6 get_port() { cwd=$(pwd) cd "$ports_dir" - printf "%s\n" */* | dmenu -p "Port" + printf "%s\n" */* > /tmp/ports.list + dmenu -p "Port" < /tmp/ports.list cd "$cwd" } |