nix/modules/home-manager/scripts/common/bin/maybe_source_env_file
2023-10-05 13:43:28 -05:00

6 lines
72 B
Bash
Executable file

#!/usr/bin/env bash
f="$1"; shift
[ -f "$f" ] && source "$f" "$@"
true