This file contains 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
#!/usr/bin/sh | |
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then | |
echo "usage: linux [-f/--full] | |
The GNU/Linux interjection speech is copypasta that was cut together based on Stallman's rant and other pieces of his writings over the years. | |
optional arguments: | |
-h, --help show this help message and exit | |
-f, --full show the entire interjection" | |
exit |
This file contains 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/bash | |
# Script to build futurerestore for GNU/Linux | |
# tested on Debian 9 and Ubuntu 18.04. | |
# Install libimobiledevice before running this script | |
# (https://gist.github.com/matteyeux/d7d8041a41ee8d664aaf5c3b99556ada) | |
# install liblzfse | |
git clone https://github.com/lzfse/lzfse.git | |
make -C lzfse && sudo make -C lzfse install |