All pastes #1984257 Raw Edit

loomsen

public shellscript v1 · immutable
#1984257 ·published 2010-11-07 10:09 UTC
rendered paste body
foostack is a functionfoostack () {     [[ -d "$HOME/tmp" ]] && TEMPDIR="$HOME/tmp" || TEMPDIR="/tmp";    for ((i=1; i<10; i++))    do        mkdir -p "$TEMPDIR/testdir/dir-$i" && touch $TEMPDIR/testdir/{dir-$i,.}/file-{1..9};    done;    echo "Done, look into $TEMPDIR/testdir"}