by LoveGracePeace on 5/29/22, 4:25 PM with 10 comments
by eulers_secret on 5/29/22, 4:50 PM
I almost always prefer to use what's available by default, that way what I memorize works anywhere.
by dredmorbius on 5/29/22, 5:30 PM
But yes, for basic arguments, particularly for ls:
alias ls='ls -F'
alias la='ls -A'
alias ll='ls -l'
Occasionally for other commands for which the default is not ideal. w3m, for example, will read the bookmarks file if URL is passed, with '-B', but otherwise exits with an error, which is annoying. alias w3m='w3m -B'
Git commands, as others note.by rurban on 5/29/22, 6:00 PM
functions only for the complicated parts. about the same number of bash aliases as .gitconfig aliases.
by gigatexal on 5/29/22, 4:30 PM
by flaburgan on 5/29/22, 4:33 PM
by twangist on 5/29/22, 11:19 PM
`$ alias` will show you your aliases, and it's a pretty easy command to remember ;)
by cpc26 on 5/29/22, 6:04 PM
61
but yes alias command when I need to work on a system I aliased prior and have not used...by db48x on 5/29/22, 4:51 PM