mirror of
https://github.com/elliotnunn/NetBoot.git
synced 2025-01-04 22:29:22 +00:00
4 lines
289 B
Bash
4 lines
289 B
Bash
|
#!/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
|