PortValhalla/scripts/Common/Config/bash/profile.sh

12 lines
254 B
Bash
Raw Normal View History

#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../Scripts/profile-base.sh";
function addBashProfile() {
name="$1";
title="$2";
2024-03-25 17:07:40 +00:00
addProfileStatement "$name" "$title" "/bin/bash" "sh" "/etc/bash/conf.d" "${@:3}";
}
popd > /dev/null;