shithub: riscv

ref: 712fd30652d29dc9e936f11d7837d1cb079575fc
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