A simple and effective command-line tool for creating encrypted archives from directories, suitable for synchronization with cloud services.
- Download RestoreSafe and move it to your desired folder.
- Copy "config\Windows\config_SAMPLE.json" to the same folder and rename it to "config.json".
- Amend "config.json" to your needs.
- "RestoreSafe.exe" cannot be executed via double-click. If you wish to execute RestoreSafe directly via double-click, please also copy "config\Windows\RestoreSafe.bat" to the same folder and double-click "RestoreSafe.bat".
- Download RestoreSafe and move it to your desired folder.
- Copy "config\macOS\config_SAMPLE.json" to the same folder and rename it to "config.json".
- Amend "config.json" to your needs.
- On macOS you need to code sign the application and remove the malware check. Copy "config\macOS\mac.entitlements" to the same folder.
- Open the terminal and navigate to the folder where you moved RestoreSafe.
cd "/path/to/RestoreSafe"
- Code sign RestoreSafe.
codesign --entitlements mac.entitlements -s - "RestoreSafe"
- Remove malware check (quarantine attribute)
xattr -d com.apple.quarantine $appPath "RestoreSafe"
- Open the terminal and navigate to the folder where you moved RestoreSafe.
tbd