diff --git a/info.plist b/info.plist index e9ac42b..b1b7c5c 100644 --- a/info.plist +++ b/info.plist @@ -458,7 +458,7 @@ echo -n $dest ~/bin:~/.local/bin:~/.brew/opt/coreutils/libexec/gnubin:~/.brew/opt/make/libexec/gnubin:~/.brew/opt/grep/libexec/gnubin:~/.brew/opt/findutils/libexec/gnubin:~/Library/Python/3.7/bin:~/.brew/opt/python/libexec/bin:~/.brew/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin::~/.brew/opt/fzf/bin version - 0.6.0 + 0.6.1 webaddress https://github.com/mhristof/alfred-pbpaste diff --git a/sha.sh b/sha.sh new file mode 100755 index 0000000..a3245bb --- /dev/null +++ b/sha.sh @@ -0,0 +1,8 @@ +#! /usr/bin/env bash +# http://redsymbol.net/articles/unofficial-bash-strict-mode/ +set -euo pipefail +IFS=$'\n\t' + +pbpaste | sha256sum | awk '{print $1}' + +exit 0