The ls option -F is useful and commonly used. alias ls in oh-my-zsh also includes the option -F.
# ls, the common ones I use a lot shortened for rapid fire usagealias l='ls -lFh'#size,show type,human readablealias la='ls -lAFh'#long list,show almost all,show type,human readablealias lr='ls -tRFh'#sorted by date,recursive,show type,human readablealias lt='ls -ltFh'#long list,sorted by date,show type,human readablealias ll='ls -l'#long listalias ldot='ls -ld .*'alias lS='ls -1FSsh'alias lart='ls -1Fcart'alias lrt='ls -1Fcrt'
The text was updated successfully, but these errors were encountered:
The
lsoption-Fis useful and commonly used.alias lsinoh-my-zshalso includes the option-F.The text was updated successfully, but these errors were encountered: