diff options
author | 2019-03-12 18:14:50 +0530 | |
---|---|---|
committer | 2019-03-12 18:14:50 +0530 | |
commit | caf77886b891bf02dd22eaa1f37fa86e106ac921 (patch) | |
tree | 00b61527385dc3ee5fe7d1e9dea13b9b5729e9dd /user-scripts | |
parent | 54c89ca2a17ad93a5af36f3b98379859b5a105f7 (diff) | |
download | nnn-caf77886b891bf02dd22eaa1f37fa86e106ac921.tar.gz |
Redirect stderr and stdout separately
Diffstat (limited to 'user-scripts')
-rwxr-xr-x | user-scripts/nlaunch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user-scripts/nlaunch b/user-scripts/nlaunch index 79540c8..7eee8a0 100755 --- a/user-scripts/nlaunch +++ b/user-scripts/nlaunch @@ -13,5 +13,5 @@ get_selection() { } if selection=$( get_selection ); then - "$selection" 2>&1 >/dev/null & + "$selection" 2>/dev/null 1>/dev/null & fi |