6 lines
188 B
Bash
Executable file
6 lines
188 B
Bash
Executable file
#!/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
|