Browse Source

Update 'README.md'

master
Joshua Pickard 3 years ago
parent
commit
bd4bd05f0d
  1. 11
      README.md

11
README.md

@ -45,6 +45,17 @@ This creates `threads.html` and extracts all information into the directory.
```rsync -avh --progress /sourcefile /destinationfolder/``` ```rsync -avh --progress /sourcefile /destinationfolder/```
Add ```--dry-run``` to test Add ```--dry-run``` to test
### LuksEncryption | cryptsetup
```
sudo cryptsetup luksOpen /dev/sda1 my_encrypted_volume
sudo mkdir /media/my_device
sudo mount /dev/mapper/my_encrypted_volume /media/my_device
sudo umount /media/my_device
sudo cryptsetup luksClose my_encrypted_volume
```
### Find and copy files by extension recursively ### Find and copy files by extension recursively

Loading…
Cancel
Save