noxz-sitesA collection of a builder and various scripts creating the noxz.tech sites |
|
git clone https://noxz.tech/git/noxz-sites.git | |
Log | Files | README | LICENSE |
1#!/bin/sh 2[ $# -eq 0 ] && return 3 4> assembly.list 5find -L ./noxz.tech/git -type f >> assembly.list 6for a in $(find ./noxz.tech -name ".assemble"); do 7 cat "$a" | while read line; do echo ${a%.*}$line | tr ' ' '\n'; done 8done >> assembly.list 9 10tar -chf "$1" -T assembly.list 11rm assembly.list