This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is a copy from my notes, written to help me quickly accomplish the goal. Included also are short explanations and tests that help me transition back into postgres admin after coding something else. | |
- Note two aliases used below are in my ~/.bash_profile file... | |
1) alias ll='LC_COLLATE=C ls -alhlTF' | |
# showing .files (sorted first), | |
# permissions/sizes included, with special characters (after directory | |
# symlink, etc) names, long-format dates, and with human-readable file sizes. | |
2) alias path='echo -e ${PATH//:/\\n}' | |
# path: Echo all executable Paths |