10 lines
204 B
Bash
Executable File
10 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
mkdir -p ~/programs/bin
|
|
echo 'export PATH="$PATH:$HOME/programs/bin/"' >> ~/.bashrc
|
|
cat >> ~/.profile << 'EOF'
|
|
# Get the aliases and functions
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
EOF
|