#!/usr/bin/env sh : ${TURNSTILE_ENV_DIR:="${HOME}/.config/service-env"} if [ ! -d "${TURNSTILE_ENV_DIR}" ] then mkdir -p "${TURNSTILE_ENV_DIR}" fi if [ -f "/etc/profile" ] then . "/etc/profile" fi if [ -d "/etc/profile.d/" ] then for file in /etc/profile.d/*.sh do . "$file" done fi if [ -f "$HOME/.profile" ] then . "$HOME/.profile" fi