From cd8c8098af588127bde0a0f757ad0534960ae4f4 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Fri, 29 Nov 2019 15:39:33 -0800 Subject: [PATCH] Add a script to show/hide dot files in Finder --- finder-show-hidden-files | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 finder-show-hidden-files diff --git a/finder-show-hidden-files b/finder-show-hidden-files new file mode 100755 index 0000000..faeda7e --- /dev/null +++ b/finder-show-hidden-files @@ -0,0 +1,5 @@ +#!/bin/sh + +status=${1:-true} +defaults write com.apple.finder AppleShowAllFiles $status +killall Finder