├── .gitignore ├── DEBIAN ├── control └── postinst ├── OSRestore 10 Terminal ├── DEBIAN │ ├── control │ └── postinst └── usr │ └── local │ └── bin │ └── osrestore ├── OSRestoreX MacOS ├── osrestorex.sh └── semierase.sh └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/DEBIAN/control -------------------------------------------------------------------------------- /DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/DEBIAN/postinst -------------------------------------------------------------------------------- /OSRestore 10 Terminal/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/OSRestore 10 Terminal/DEBIAN/control -------------------------------------------------------------------------------- /OSRestore 10 Terminal/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/OSRestore 10 Terminal/DEBIAN/postinst -------------------------------------------------------------------------------- /OSRestore 10 Terminal/usr/local/bin/osrestore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/OSRestore 10 Terminal/usr/local/bin/osrestore -------------------------------------------------------------------------------- /OSRestoreX MacOS/osrestorex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/OSRestoreX MacOS/osrestorex.sh -------------------------------------------------------------------------------- /OSRestoreX MacOS/semierase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/OSRestoreX MacOS/semierase.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanaccidentally/OSRestoreX/HEAD/README.md --------------------------------------------------------------------------------