mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 04:22:50 -05:00
8 lines
211 B
Bash
8 lines
211 B
Bash
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Unless we are running bash with a command explicitly (-c), drop into fish
|
|
if [ -z "$BASH_EXECUTION_STRING" ]; then
|
|
exec fish
|
|
fi
|