6 lines
72 B
Bash
Executable file
6 lines
72 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
f="$1"; shift
|
|
[ -f "$f" ] && source "$f" "$@"
|
|
true
|