Guest User

Untitled

a guest
May 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. set -euxo pipefail
  4.  
  5. echo YOLO | gpg --disable-mdc --encrypt --recipient me@mymail.com > no-mdc.asc
  6. if ! gpg -d no-mdc.asc | cat > test.data; then echo failed; fi
Add Comment
Please, Sign In to add comment