#!/bin/bash ## this scripts creates a directory that begins with the current date ## in the form of: ('something' is assumed as parameter) ## 20031231something ## author: Karl Voit, shellscript@Karl-Voit.at ## date: 20031212 mkdir `date +%Y%m%d`_$1 #end