Tag: bash
-
How to create a 1 gig file
dd if=/dev/zero of=big-file.bin bs=1g count=1 or mkfile 1g big-file.bin
-
How to tar a directory and only include certain file types
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name \*\.inc \) | xargs tar -rf myProjectTarName.tar