Tagged Questions
1
vote
2answers
479 views
Alias Loop in csh
Why is there an Alias loop error created here:
alias df 'printf "\n"; df -hP | column -t'
But not here:
alias df 'df -hP | column -t'
I realize I could call the alias something else and still ...