Zurück zum Blog

Tag: shell

Continuous Deployment – Automatic Backup Script

Aljona Buchloh

10.04.2013
A few words about Continuous Deployment Continuous Deployment is the deployment or release of code to Production as soon as it is ready. (…) The automated process is key because…
Weiterlesen

Consolidating development environments – a Bash Magic tutorial

Jonathan Buch

23.07.2012
Developers have a tendency to not only work on a single project at once. Depending on those projects, there is a constant struggle to keep your programming environment in sync…
Weiterlesen

Simple Shell-Script to use dict.leo.org in your shell

Markus Daniel

16.10.2010
Just create a new file like “vim leo”. Insert the following script code: #!/bin/sh t(){ while [ -n '$1' ]; do T=/tmp/$$.html lynx -source 'http://dict.leo.org/?search=$1'| grep results >$T w3m -dump…
Weiterlesen