1 1 * * * touch /tmp/`date '+\%a'`.touch
It works in Linux but in Solaris does not. It creates file names where is a slash before a week name.
In Solaris the ' sign should not be used.
1 1 * * * touch /tmp/`date +\%a`.touch
Insert into .bashrc to turn on using arrows up/down to search in bash history.
bind '"\e[A"':history-search-backward bind '"\e[B"':history-search-forward shopt -s cdspell shopt -s cmdhist shopt -s histappend export HISTCONTROL="ignoredups"
very useful ;-)