git: 9front

ref: 5ece9fb8480195b39e604a4aa32b5fa1be185e65
dir: /rc/bin/ape/cat/

View raw version
#!/bin/rc

rfork e

files=()
while(! ~ $#* 0){
	switch($1){
	case -
		files=($files /fd/0)
	case -*
		;
	case *
		files=($files $1)
	}
	shift
}

exec /$cputype/bin/cat $files