6 lines
264 B
Bash
6 lines
264 B
Bash
#!/bin/sh
|
|
# POSIX-compliant profile for login shells
|
|
# This file is sourced by sh-compatible shells (including bash when invoked as sh)
|
|
|
|
# Source the common profile configuration
|
|
[ -f "$HOME/.shell-common/profile.common" ] && . "$HOME/.shell-common/profile.common" |