shithub: riscv

ref: e95082f66c099184afd273d7fc0a30fd2c5e0ba8
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