mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
16 lines
175 B
Text
16 lines
175 B
Text
|
#!/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 "$@"
|