#!/bin/sh # Update hack.tar.gz with any changes mount -o remount,rw / cd / gzip -d hack.tar.gz cd /hack tar --exclude lost+found --exclude nfs --exclude smb -uf /hack.tar . cd / gzip hack.tar mount -o remount,ro / exit 0