Files

13 lines
203 B
Bash
Raw Permalink Normal View History

2026-01-23 08:55:18 +01:00
#!/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 "$@"