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'

Reply via email to