Adicione o seguinte ao seu ~/.bash_profile
:
function cd {
# actually change the directory with all args passed to the function
builtin cd "$@"
# if there's a regular file named "todo.txt"...
if [ -f "todo.txt" ] ; then
# display its contents
cat todo.txt
fi
}
É possível que você já tenha uma função semelhante para cd
- basta estender essa para imprimir o conteúdo de todo.txt
, se existir.