Skip to content

Instantly share code, notes, and snippets.

@Ceasar
Created October 24, 2011 01:15
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 Ceasar/1308159 to your computer and use it in GitHub Desktop.
Save Ceasar/1308159 to your computer and use it in GitHub Desktop.
ls | grep -v '\.pyc$' | column
ceasarbautista@hse140:~/Desktop/Statistics/statistics/markov$ ls
README __init__.pyc markov.py matrix2graph.pyc pathfinder.pyc priority_dict.pyc spanning.py
__init__.py graph.py matrix2graph.py pathfinder.py priority_dict.py space.py vector.py
ceasarbautista@hse140:~/Desktop/Statistics/statistics/markov$ ls | grep -v '\.pyc$' | column
README graph.py matrix2graph.py priority_dict.py spanning.py
__init__.py markov.py pathfinder.py space.py vector.py
@Ceasar
Copy link
Author

Ceasar commented Oct 24, 2011

Notice how the columns are not aligned correctly with the second command.

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