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/bash | |
# booklet.sh - This script inputs a pdf file and outputs a pdf file that is in booklet | |
# format. You will then be able to print the output file using duplex | |
# (both sides of paper) and 2 pages per side. The end result is a printed | |
# document that can be stapled in the middle and folded so that it may be | |
# viewed like a book. The script is also capable of printing multiple | |
# signatures. | |
# | |
# This script is licensed under the GPL license v3. | |
# See https://www.gnu.org/copyleft/gpl.html for more information. |
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 | |
### BEGIN INIT INFO | |
# hyperboria.sh - An init script (/etc/init.d/) for cjdns | |
# Provides: cjdroute | |
# Required-Start: $remote_fs $network | |
# Required-Stop: $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Cjdns router | |
# Description: A routing engine designed for security, scalability, speed and ease of use. |