martedì 13 luglio 2010

The Comma Separated Value (CSV) File Format

How To:
The Comma Separated Value (CSV) File Format
Create or parse data in this popular pseudo-standard format

Csv File Format

giovedì 21 gennaio 2010

moving mysql data directory - Ubuntu

[ubuntu] [SOLVED] moving mysql data directory - Ubuntu Forums

Create a tar.gz for each subfolder

tested and working

for i in *; do if [ -d "$i" ]; then tar czf "$i".tar.gz "$i"; fi; done

from http://sidux.com/PNphpBB2-viewtopic-t-9922.html