Pass is a great command line tool to handle your password, as well in a team.
Add the key into your local GPG base:
$ gpg --keyserver <a specific key server if needed> --search-keys <email address>
| #!/bin/sh | |
| # | |
| # WiFi Watchdog Installer / Updater / Uninstaller | |
| # | |
| # Usage: | |
| # Install/Update: ./install_wifi_watchdog.sh <TARGET_IP> [INTERVAL_MINUTES] | |
| # Uninstall: ./install_wifi_watchdog.sh uninstall | |
| # | |
| # Examples: | |
| # ./install_wifi_watchdog.sh 192.168.2.1 |
Pass is a great command line tool to handle your password, as well in a team.
Add the key into your local GPG base:
$ gpg --keyserver <a specific key server if needed> --search-keys <email address>
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| # Heavily depends on: | |
| # libqrencode (fukuchi.org/works/qrencode/) | |
| # paperkey (jabberwocky.com/software/paperkey/) | |
| # zbar (zbar.sourceforge.net) | |
| # Producing the QR codes: | |
| # Split over 4 codes to ensure the data per image is not too large. | |
| gpg --export-secret-key KEYIDGOESHERE | paperkey --output-type raw | base64 > temp | |
| split temp -n 4 IMG | |
| for f in IMG*; do cat $f | qrencode -o $f.png; done |