From d6598592e36b150335145d13fad5852a69409c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Galv=C3=A3o?= Date: Sat, 17 Oct 2015 16:21:59 +0100 Subject: .osx: Simplify `killall` redirection `&>` is the same as `2>&1`. Closes #589. --- .osx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- cgit v1.2.3