For Linux use the following commands: $ date -d ‘now + 12 days’ (12 days in the future) $ date -R –date=”-14 days” (14 days in the past) What if you have Solaris “date”, then you need the below. Let’s say we need to calculate yesterday’s date. This script is for Solaris only, and it Full Article…
Viewing 1 to 2 of 2 items
tar command examples
This is not a comprehensive list by any means, but this should give you a jumpstart on some of the common Linux commands. Bookmark this article for your future reference. 1. tar command examples Create a new tar archive. $ tar cvf archive_name.tar dirname/ Extract from an existing tar archive. $ tar xvf archive_name.tar View Full Article…