6 lines
62 B
Bash
6 lines
62 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -f ~/.bashrc ]]; then
|
||
|
source ~/.bashrc
|
||
|
fi
|