Skip to content

Instantly share code, notes, and snippets.

@pirafrank
Last active December 7, 2015 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pirafrank/53b7037513626f92577c to your computer and use it in GitHub Desktop.
Save pirafrank/53b7037513626f92577c to your computer and use it in GitHub Desktop.
ls colored output and long list ll alias
# Linux
alias ll='ls -Fhla --color=auto'
alias ls='ls -Fh --color=auto'
# OS X
alias ll='ls -Fhla'
alias ls='ls -Fh'
@pirafrank
Copy link
Author

You get coloured output and nice options. Check man for -F and -h options.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment