2020-05-31 11:27:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Usage: ipfs_publish <directory>
|
|
|
|
# NOTE: requires <ipfs> and <hashdeep>!
|
|
|
|
|
|
|
|
DIR=$1
|
2020-06-19 14:34:43 +02:00
|
|
|
IPFS_HASHES="IPFS_hash_list.txt"
|
|
|
|
DF_HASHES="checksum_list.xml"
|
2020-05-31 11:27:37 +02:00
|
|
|
|
|
|
|
echo "(1) Removing Thumbs.db ..."
|
|
|
|
nice find "$DIR" -name Thumbs.db -exec rm -rf {} \;
|
|
|
|
|
|
|
|
echo "(2) Adding $DIR to IPFS ..."
|
|
|
|
nice ipfs add -r "$DIR" > $IPFS_HASHES
|
|
|
|
|
|
|
|
echo "(3) Verifying ..."
|
|
|
|
nice ipfs pin verify
|
|
|
|
|
|
|
|
echo "(4) Calculating digital forensics hashes to $DF_HASHES ..."
|
2020-09-27 11:43:06 +02:00
|
|
|
nice hashdeep -c md5,sha1,sha256 -r -d -l -j 1 "$DIR" > $DF_HASHES
|
2020-05-31 11:27:37 +02:00
|
|
|
|
2020-09-27 11:43:06 +02:00
|
|
|
echo "DONE - to publish the content execute: ipfs name publish <HASH>"
|
2020-05-31 11:27:37 +02:00
|
|
|
exit 0
|