Rest in peace my beautiful friend. Although I’ve not spoken with you in the years since high school. The news of your passing has sadden me. You were a wonderful person and you will be remembered. Rest In Peace Fleur.

Home of the Dragonlord Warlock/Norin Nightfire
This person is a sex extortionist that baits you and then tries to blackmail you.
Username: Vanaddeva01 on snapchat
https://www.facebook.com/vana.devera
Says she is 18
A bash script to rename files using its sha256 hash number, no error trapping or anything yet.
#!/usr/bin/bash function procfile { filename=$1 filesum=$(sha256sum -b $filename) filesha=$(echo $filesum | cut -d " " -f1) # filesha=${filesum%-*} extension="${filename##*.}" newfilename=$filesha"."$extension mv $filename $newfilename } function showhelp { echo "sharen or $1, is a program designed to rename a specified file" echo "to its sha256 hash as its filename, preserving the file exitension" echo echo "The syntax" echo echo " sharen filename" echo " filename being the name of the file to process." echo } if [ -f "$1" ]; then procfile $1 else showhelp $0 fi