mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
8 lines
156 B
Bash
Executable file
8 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
UNAMEM=$(uname -m)
|
|
UNAMES=$(uname -s)
|
|
if [ x"$UNAMES" = x"Darwin" ] && [ x"$UNAMEM" = x"arm64" ]; then
|
|
exec ape "$@"
|
|
else
|
|
exec rusage "$@"
|
|
fi
|