2022-02-05 22:29:46 -06:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2022-06-07 23:13:10 -05:00
|
|
|
[ -f .environment ] && exit 2
|
2022-02-05 22:29:46 -06:00
|
|
|
[ -w /etc/bash.bashrc ] || exit 1
|
|
|
|
[ -w /etc/profile ] || exit 1
|
|
|
|
|
|
|
|
printf '[ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc\n' >> /etc/bash.bashrc
|
|
|
|
printf '[ -f $HOME/.config/bash/profile ] && . $HOME/.config/bash/profile\n' >> /etc/profile
|
2022-06-07 23:13:10 -05:00
|
|
|
touch .environment
|
2022-02-05 22:29:46 -06:00
|
|
|
|
|
|
|
set +x
|