6 lines
100 B
Plaintext
6 lines
100 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
INPUT="$1"
|
||
|
OUTPUT="$2"
|
||
|
cd "$INPUT"
|
||
|
find . | cpio -H newc -o | gzip -9 > "$OUTPUT"
|