> The alias would look something like this (as I imagine it in my head):
> 
> $ alias ald='ls -la $1|egrep ^d'

You'll have to define it as a function:

function ald { ls -la $1 | grep -E ^d; }

-- 
Ian



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to