16 lines
254 B
Bash
Executable file
16 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
## Init macOS env
|
|
|
|
# Set Locale
|
|
LC_ALL=en_US.UTF-8; export LC_ALL
|
|
LANG=en_US.UTF-8; export LANG
|
|
|
|
# Set PATH
|
|
for p in /usr{/local/opt/{e2fsprogs,ruby,util-linux},/local,}/{bin,sbin}; do
|
|
PATH="${p}:${PATH}"
|
|
done
|
|
export PATH
|
|
|
|
# Run cmd
|
|
"$1"
|