5 lines
206 B
Bash
5 lines
206 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Dispatch to ~/.profile, the single login entry point for all shells,
|
||
|
|
# which is what would happen if this file and ~/.bash_profile did not exist
|
||
|
|
[ -f "$HOME/.profile" ] && . "$HOME/.profile"
|