5 lines
102 B
Bash
Executable file
5 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
|
|
status=${1:-true}
|
|
defaults write com.apple.finder AppleShowAllFiles $status
|
|
killall Finder
|