H5OULWBRMSN62OZS3VDSEWWBLEICMW2JKN3GYEGBZOCAWFEIWABAC
set -l filename $argv[1]
if test -f $argv[1]
cat $filename | pbcopy
else
echo $argv | pbcopy
end
# if there are arguments, don't read from stdin, pipe them through
if test (count $argv) -ne 0
if test -f "$argv"
cat $argv | pbcopy
else
echo $argv | pbcopy
end
else
pbcopy
end