8 lines
96 B
Bash
8 lines
96 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -f ~/.env ] ; then
|
|
cat << EOF >> ~/.env
|
|
SERV_COLOR="32"
|
|
USER="$USER"
|
|
EOF
|
|
fi
|