27cf692572
- Move shell profiles to shell folder - Add `ffconvert` and `zipline` functions - Delete configuration files for tools I don't use
10 lines
243 B
Bash
10 lines
243 B
Bash
# .bashrc
|
|
|
|
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/$(basename "${BASH_SOURCE[0]}")"
|
|
source $SCRIPT_PATH/.shellrc
|
|
source $SCRIPT_PATH/.aliases
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bashrc ]; then
|
|
source /etc/bashrc
|
|
fi |