mirror of
https://github.com/yuk7/AlpineWSL.git
synced 2026-01-18 16:47:21 +01:00
12 lines
206 B
Bash
12 lines
206 B
Bash
export CHARSET=UTF-8
|
|
export LANG=C.UTF-8
|
|
export PAGER=less
|
|
export PS1='\h:\w\$ '
|
|
umask 022
|
|
|
|
for script in /etc/profile.d/*.sh ; do
|
|
if [ -r $script ] ; then
|
|
. $script
|
|
fi
|
|
done
|