6 lines
158 B
Bash
6 lines
158 B
Bash
#!/bin/bash
|
|
|
|
# Customize PATH
|
|
if [ -d $HOME/bin ] ; then export PATH=$PATH:$HOME/bin ; fi
|
|
if [ -d $HOME/scripts ] ; then export PATH=$PATH:$HOME/scripts ; fi
|