This file contains hidden or 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 very simple .bashrc file that I'm using on a daily basis. # | |
| # It completely replaced my zsh setup, and should be relatively simple to understand and modify. # | |
| # # | |
| # Built by Moritz (mo-mar.de) - just do whatever you want with it, according to the Unlicense: # | |
| # https://choosealicense.com/licenses/unlicense/ # | |
| # # | |
| # Simple installation: # | |
| # wget https://go.momar.de/bashrc -O ~/.bashrc # | |
| ################################################################################################### |
This file contains hidden or 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
| ######### | |
| # Aliases | |
| ######### | |
| # Always copy contents of directories (r)ecursively and explain (v) what was done | |
| alias cp='cp -rv' | |
| # List contents with colors for file types, (A)lmost all hidden files (without . and ..), in (C)olumns, with class indicators (F) | |
| alias ls='ls --color=auto -ACF' | |
| # List contents with colors for file types, (a)ll hidden entries (including . and ..), use (l)ong listing format, with class indicators > | |
| alias ll='ls --color=auto -alF' |
This file contains hidden or 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
| #!/bin/bash | |
| iatest=$(expr index "$-" i) | |
| ####################################################### | |
| # SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me | |
| ####################################################### | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc |