Posts in "Tips"

AmazonGlobal Priority Shipping delivers

I have written my experience ordering using AmazonGlobal which was great. The only part that made Amazon missed was the delivery deadline. Those orders were placed using AmazonGlobal Expedited Shipping which said averaged 5-10 business days for delivery. However Amazon’s courier partner i-Parcel failed to get my orders in time, although they only missed for a few days.

Archiving Commands via SSH

Extract compressed file: [syntax_prettify linenums=”0″]tar -zxvf file.tar.gz[/syntax_prettify] Extract uncompressed file: [syntax_prettify linenums=”0″]tar -xvf file.tar[/syntax_prettify] Takes everything from folder_to_be_archived/ and puts it into archived_filename.tar: [syntax_prettify linenums=”0″]tar -cf archived_filename.tar folder_to_be_archived/[/syntax_prettify]