Created
May 4, 2018 20:05
-
-
Save TravisMullen/b94da81633c56c42d8975874a5539ddd to your computer and use it in GitHub Desktop.
Get PIVX wallet from USB (Linux)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
sudo mkdir -p /mnt/usb | |
sudo mount /dev/sda1 /mnt/usb | |
cd /mnt/usb | |
# find "pivx/wallet.dat" | |
mkdir -p $HOME/.pivx | |
sudo cp -f *pivx/*wallet.dat $HOME/.pivx/wallet.dat | |
sudo umount /dev/sda1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment