13 lines
203 B
Bash
Executable File
13 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
basha ()
|
|
{
|
|
SOURCE="$HOME/.bashrc";
|
|
F_NAME=".bash_aliases";
|
|
FILE=$HOME/$F_NAME;
|
|
cd "$HOME/machine";
|
|
commit_if_modified "$FILE";
|
|
cd -;
|
|
source $SOURCE
|
|
}
|
|
basha "$@"
|