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 | |
# Parse CLI argument | |
INPUT_FILE=$1 # SVG file to export | |
TEMP_SVG_FILE="temp_$INPUT_FILE" # temporary SVG file, with all layers visible | |
OUTPUT_FILE="${INPUT_FILE%.*}.pdf" # output filename is the same as input — just changing .svg into .pdf | |
# Ensure each layer is visible | |
inkscape --actions=unhide-all --export-filename=$TEMP_SVG_FILE $INPUT_FILE | |
# Export one PDF per layer |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!-- French Dvorak Layout --> | |
<!-- http://www.clavier-dvorak.org/ --> | |
<!-- version 0.6.5 --> | |
<keyboard group="126" id="6542" name="Aspyct French Dvorak" maxout="5"> | |
<!-- | |
This layout is designed for ISO and ANSI keyboards. The extra | |
key on an ISO keyboard (next to the left Shift) is optional, | |
characters on it are also accessible through other keys. |
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
ebo@latitude-e6410:~/téléchargements/libofx_0.9.10.orig/libofx-0.9.10$ ./configure | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed |
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
ebo@latitude-e6410:~/téléchargements/grisbi-1.0.4$ whereis grisbi | |
grisbi: | |
ebo@latitude-e6410:~/téléchargements/grisbi-1.0.4$ ./configure | |
checking for gcc... gcc | |
checking whether the C compiler works... yes |
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
$ sudo rm -r /usr/local/bin/grisbi | |
ebo@latitude-e6410:~/téléchargements$ cd grisbi-1.0.2/ | |
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
[10:15] ebo:~/téléchargements/grisbi (grisbi-1.0.x ✔) $ make distclean | |
make: *** No rule to make target 'distclean'. Stop. | |
[10:15] ebo:~/téléchargements/grisbi (grisbi-1.0.x ✔) $ ./autogen.sh | |
automake and autoconf are installed | |
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'. |