Ted Unangst escribis:
On 7/28/08, Jesus Sanchez <[EMAIL PROTECTED]> wrote:
 Can I make "ls" to NOT show
 the hidden files (.xinitrc , .vimrc, etc) when
 using as Root??

ls *
ls | grep -v ^.
sudo -u nobody ls
find . -name "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]*"
-maxdepth 1 -print0 | xargs -0 ls -Cd | sed 's/\.\///g'

thanks for the info!, this helped me to search a nice combination to me:

alias ll="ls -d *"

Thanks

Reply via email to