Add hashall function

This commit is contained in:
David Tomaschik
2023-08-20 13:56:49 -07:00
parent bc9150b592
commit 11ecbdaf04
2 changed files with 38 additions and 10 deletions

View File

@@ -21,3 +21,7 @@ if test -f ${HOME}/.zprompt ; then
fi
fi
unset _STARSHIP_PATH
function hashall {
tee >(md5sum) | tee >(sha1sum) | sha256sum
}