$ defaults read com.apple.mail UserHeaders
$ defaults write com.apple.mail UserHeaders \
'{"Disposition-Notification-To" = "user@domain"; }'
Source: macworld
To show hidden files:
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
To hide files:
defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder
By default crontab editor is vim, to change:
export EDITOR=/usr/bin/nano
export VISUAL=nano
This is valid for unix systems too
Easy response, install tree with brew
brew install tree
The follow command send a email in text format. (Valid for linux too)
echo "Hello World!!!" | mail -s "Mail Subject Here" "[email protected]"
And the follow examples send a email in format HTML.
cat confirmation.html | mail -s "$(echo -e "This is the subjecto of Sigeva\nContent-Type: text/html")" "[email protected]"
echo "<b>HTML Message goes here</b>" | mail -s "$(echo -e "This is the subject\nContent-Type: text/html")" [email protected]
Sometimes when I installed minicom and I need change parameter don't remember the combintaion keys of Meta-Z.
The magic combination of Meta-Z is: Esc + z
sysctl hw.model
Try too:
sysctl -a