What can I do to map ls -l | grep ^d to lsf? I am wading around in the mess of files and folders and trying to just see the folders so it's easier to cd ... around to places.
This should do it good sir
alias lsf='ls -l | grep ^d'
to add permanent, do this
echo "alias lsf='ls -l | grep ^d'" >> ~/.bash_profile
If you are using a decent shell (i.e. ZSH) you can do
ls -d *(/)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With