aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVítor Galvão <info@vitorgalvao.com>2015-10-17 16:21:59 +0100
committerMathias Bynens <mathias@qiwi.be>2015-10-18 09:53:27 -0400
commitd6598592e36b150335145d13fad5852a69409c71 (patch)
tree311cccabc06702b7a2c0cddc3fd3f1e448c550b1
parent6739605aded957ad1f0b4682d03033b76d372bba (diff)
downloaddotfiles-d6598592e36b150335145d13fad5852a69409c71.tar.gz
dotfiles-d6598592e36b150335145d13fad5852a69409c71.tar.bz2
dotfiles-d6598592e36b150335145d13fad5852a69409c71.zip
.osx: Simplify `killall` redirection
`&>` is the same as `2>&1`. Closes #589.
-rwxr-xr-x.osx2
1 files changed, 1 insertions, 1 deletions
diff --git a/.osx b/.osx
index 3550167..dfe5c82 100755
--- a/.osx
+++ b/.osx
@@ -827,6 +827,6 @@ for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \
"Dock" "Finder" "Google Chrome" "Google Chrome Canary" "Mail" "Messages" \
"Opera" "Safari" "SizeUp" "Spectacle" "SystemUIServer" "Terminal" \
"Transmission" "Twitter" "iCal"; do
- killall "${app}" > /dev/null 2>&1
+ killall "${app}" &> /dev/null
done
echo "Done. Note that some of these changes require a logout/restart to take effect."