aboutsummaryrefslogtreecommitdiffstats
path: root/user-scripts
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-03-12 18:14:50 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-03-12 18:14:50 +0530
commitcaf77886b891bf02dd22eaa1f37fa86e106ac921 (patch)
tree00b61527385dc3ee5fe7d1e9dea13b9b5729e9dd /user-scripts
parent54c89ca2a17ad93a5af36f3b98379859b5a105f7 (diff)
downloadnnn-caf77886b891bf02dd22eaa1f37fa86e106ac921.tar.gz
Redirect stderr and stdout separately
Diffstat (limited to 'user-scripts')
-rwxr-xr-xuser-scripts/nlaunch2
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