7 lines
82 B
Text
7 lines
82 B
Text
exec >$3
|
|
cat <<-EOF
|
|
OUT="\$1"
|
|
shift
|
|
cc -Wall -o "\$OUT" "\$@"
|
|
EOF
|
|
chmod a+x $3
|