7 lines
188 B
Bash
7 lines
188 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# creates sum of the directory STRUCTURE!!
|
||
|
|
||
|
[ -f "skel/etc/ixvd/skel-sum.txt" ] || echo "none" > skel/etc/ixvd/skel-sum.txt
|
||
|
find skel | sha256sum > skel/etc/ixvd/skel-sum.txt
|