Skip to content

Commit

Permalink
.osx: Simplify killall redirection
Browse files Browse the repository at this point in the history
`&>` is the same as `2>&1`.

Closes mathiasbynens#589.
  • Loading branch information
vitorgalvao authored and mathiasbynens committed Oct 18, 2015
1 parent 6739605 commit d659859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .osx
Original file line number Diff line number Diff line change
Expand Up @@ -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."

0 comments on commit d659859

Please sign in to comment.