NetBoot/manysystems.sh

4 lines
289 B
Bash
Raw Normal View History

2021-02-08 00:51:03 +00:00
#!/bin/sh
mkdir -p manysystems.tmp; ls baseofmanysystems | grep ^System | grep -v dump$ | while read -r x; do rsync -a --delete --delete-excluded --include "$x*" --exclude='System *' baseofmanysystems /tmp/; MakeHFS -s 20m -i /tmp/baseofmanysystems -n "$x" manysystems.tmp/"$x".dsk; done