A shortcut / alias for listing only hidden files and folders<
alias us="ls -la | grep ^- | awk '{print \$9}' | grep ^\\\."
Welcome to my world
A shortcut / alias for listing only hidden files and folders<
alias us="ls -la | grep ^- | awk '{print \$9}' | grep ^\\\."
There is an easy trick to display only the filename with ls -l
ls -l | awk '{print $9}'