Code: Select all
alias ls='ls -u --color=auto --classify --time-style=long-iso --group-directories-first --si --quoting-style=shell'
It organizes the directories first and gives you colors and.... it rules

Moderators: b1o, jkerr82508
Code: Select all
alias ls='ls -u --color=auto --classify --time-style=long-iso --group-directories-first --si --quoting-style=shell'

rolf wrote:Oh, I see you have commented out your source the global bashrc in your ~/.bashrc.
# Note that you should not add custom aliases here as this file will be
# overwritten when package bash is upgraded. Instead create an own profile
# file for any added aliases.
Put the alias in ~/.bashrc
Make an alias permanent
Use your favorite text editor to create a file called ~/.bash_aliases, and type the alias commands into the file.
.bash_aliases will run at login (or you can just execute it with ..bash_aliases )
Code: Select all
if [ -f .alias ]; then
. .alias
fiCode: Select all
alias cd..='cd ..';
alias df='df -h -x supermount';
alias ls='ls -u --color=auto --classify --time-style=long-iso --group-directories-first --si --quoting-style=shell';
alias dir='ls -u --color=auto --classify --time-style=long-iso --group-directories-first --si --quoting-style=shell'
alias copy='cp -i'
alias move='mv -i'
alias cd..='cd ..'
alias orphans='pacman-color -Qtdq'
alias removeorphans='sudo pacman -Rs $(pacman -Qqdt)'
alias ping='ping -c 10'
alias lsd='/bin/ls -FAv |grep /$ | column'Code: Select all
source ~/.bashrcCode: Select all
cd /sbinCode: Select all
./ifconfigCode: Select all
alias cdsbin='cd /sbin'
alias ifc='./ifconfig'
alias ifconfig='cdsbin; ifc; cd' Code: Select all
alias ifconfig='cdsbin; ifc;'