diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-01-29 00:34:11 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-01-29 00:34:11 -0500 |
commit | 7147501a1a7a60344c4a0b856abea25c5a382428 (patch) | |
tree | 25d178a09a9387b5c0f4675a79fce419bb008ad5 /.local/bin/x-pdf | |
parent | 11e461d0fea5aaf33a31ebb88a17135b46c9483d (diff) |
.local/bin/x-*: exec not eval; I'm smert.
Diffstat (limited to '.local/bin/x-pdf')
-rwxr-xr-x | .local/bin/x-pdf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/x-pdf b/.local/bin/x-pdf index cfaa258..8f9ef60 100755 --- a/.local/bin/x-pdf +++ b/.local/bin/x-pdf @@ -1,3 +1,3 @@ #!/bin/sh -eval $(pick atril zathura mupdf okular evince xpdf 'emacsclient -c') "$@" +exec $(pick atril zathura mupdf okular evince xpdf 'emacsclient -c') "$@" |