Windows You always have to create a totally new process via a CreateProcess(…) call. Linux You can either just copy
Continue readingCategory: Linux
(Un)pack and (De)compress a directory (Linux)
Pack tar -cvf archive.tar /path/to/folder Compress gzip archive.tar bzip2 archive.tar Pack & Compress tar -czvf archive.tar.gz /path/to/folder tar -cjvf archive.tar.bz2
Continue reading