shithub: riscv

ref: 0efcfcc60ca6d1d99bdea89efc6c1ffcc5df3d3d
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