I have a very long command in bash, which I do not want to type all the time, so I put an alias in my .profile
alias foo=\'...\'
Now I want
Another way of calling an alias when processing the results of find is to use something like this answer
so the following should work:
alias ll="ls -al" find . -type d | while read folder; do ll $folder; done