misc

Sipgate FFX für Firefox 3

Sven Bachmann
.notice{padding:18px;line-height:24px;margin-bottom:24px;border-radius:4px;color:#444;background:#e7f2fa}.notice p:last-child{margin-bottom:0}.notice-title{margin:-18px -18px 12px;padding:4px 18px;border-radius:4px 4px 0 0;font-weight:700;color:#fff;background:#6ab0de}.notice.warning .notice-title{background:rgba(217,83,79,.9)}.notice.warning{background:#fae2e2}.notice.info .notice-title{background:#f0b37e}.notice.info{background:#fff2db}.notice.note .notice-title{background:#6ab0de}.notice.note{background:#e7f2fA}.notice.tip .notice-title{background:rgba(92,184,92,.8)}.notice.tip{background:#e6f9e6}.icon-notice{display:inline-flex;align-self:center;margin-right:8px}.icon-notice img,.icon-notice svg{height:1em;width:1em;fill:currentColor}.icon-notice img,.icon-notice.baseline svg{top:0.125em;position:relative} Anmerkung Update: Pete hat mir geschrieben das es eine neue Version für den Firefox 3.x gibt. Die Doku dazu gibts bei Sipgate und das Add-On dann über die Mozilla Seite. Hallo, vorweg: der Support von Sipgate ist wirklich fix. Anfrage 10:09 Uhr via Webinterface gestellt, 10:12 Uhr kam die Antwort. Leider jedoch eine negative.

Unzip/unrar multiple files with file-specific folders

Sven Bachmann
Hi, if you want to unzip/unrar multiple files in a directory, but want to create a special folder for each content, you can use the following bash-code. #!/bin/bash IFS=' ' # ZIP files for i in `ls *zip`; do DIRNAME=${i%.zip} mkdir $DIRNAME cd $DIRNAME unzip ../$i cd .. done # RAR files for i in `ls *rar`; do DIRNAME=${i%.rar} mkdir $DIRNAME cd $DIRNAME rar x ../$i cd .. done Bye Sven