csv Dateien nach LaTeX konvertieren

Das Skript convertiert csv Zeilen mit “;” als Trenner in LaTeX kompatible Tabellenzeilen csv2latextable.script if [ -z $1 ] then echo “No file to convert given to script – exit now” exit fi # for “;” seperation sed “s/;/...

Cd mounten

Mountet eine CD nach /mnt/isoCD mountCD.sh #!/bin/sh mount -o loop -t iso9660 “$1” /mnt/isoCD

Restore some configuration files

Sometimes I do not want to reuse my old $HOME/.kde folder completely or other hidden folders after I reinstalled the operating system. In this case I want to copy only selected folders and file to the new $HOME. This script does most of the necessary copy operations...

shell: is the device mounted ?

The following function allows to test if a device is already mounted. #!/bin/sh # ——————————————————— # function is_mounted () { # 1. mount aufrufen. # 2....

shell: does the server exist ?

The following function allows to test for the existens of a server in the network via ping, but with a better interface #!/bin/sh # ——————————————————— #...