From 94fa2007d44c76b4856ed85a52075b40842697ee Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 4 Jan 2022 05:46:59 +0200 Subject: Difference from arching-kaos-infochain script is the addition of timestamp --- bin/mixtapes | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 bin/mixtapes diff --git a/bin/mixtapes b/bin/mixtapes new file mode 100755 index 0000000..aefaf26 --- /dev/null +++ b/bin/mixtapes @@ -0,0 +1,48 @@ +#!/bin/bash +# The following creates a mixtape data message +# We can extend it by calling the pack_z_block.sh mixtape/add data + +usage(){ + title + echo "$0 - artist title file" +} + +main(){ + echo $MIXTAPE_FILE "by" $MIXTAPE_ARTIST "named as" $MIXTAPE_TITLE + + MIXTAPE_IPFS_HASH=$(ipfs add -q $MIXTAPE_FILE) + + MIXTAPE_SIGN_FILE=$MIXTAPE_FILE".asc" + gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $MIXTAPE_SIGN_FILE $MIXTAPE_FILE + + MIXTAPE_SIGNATURE=$(ipfs add -q $MIXTAPE_SIGN_FILE) + + cat > data <