12 lines
260 B
Bash
Executable file
12 lines
260 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
. "../../Scripts/profile-base.sh";
|
|
|
|
function addBashProfile() {
|
|
name="$1";
|
|
title="${2:-$1}";
|
|
addProfileStatement "$name" "$title" "/bin/bash" "sh" "/etc/bash/conf.d" "${@:3}";
|
|
}
|
|
|
|
popd > /dev/null;
|