blob: ef22cbcccb47be7b35f2984f449cc924b8efd794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# -*- shell-script -*-
if test -r ~/.config/bash/"logout-$(hostname)"; then
. ~/.config/bash/"logout-$(hostname)"
fi
if test -r ~/work/.config/bash/logout; then
. ~/work/.config/bash/logout
fi
|