Install
openclaw skills install @terrycarter1985/text-hasherCompute SHA-256 or MD5 hashes of text strings. Useful for quick integrity checks, deduplication, and content fingerprinting without leaving the terminal.
openclaw skills install @terrycarter1985/text-hasherQuickly hash a text string with SHA-256 or MD5.
sha256sum or md5sum (usually preinstalled on Linux/macOS)echo -n "your text here" | sha256sum | awk '{print $1}'
echo -n "your text here" | md5sum | awk '{print $1}'
diff <(echo -n "text A" | sha256sum) <(echo -n "text B" | sha256sum)
cat data.txt | sha256sum | awk '{print $1}'
-n on echo prevents a trailing newline from changing the hash.sha256sum filename directly.