cosmopolitan/bin/x86_64-unknown-cosmo-install
2023-08-15 04:40:19 -07:00

15 lines
175 B
Bash
Executable file

#!/bin/sh
FIRST=1
for x; do
if [ $FIRST -eq 1 ]; then
set --
FIRST=0
fi
if [ x"$x" = x"-s" ]; then
continue
fi
set -- "$@" "$x"
done
exec install "$@"