Last active
December 24, 2016 09:29
-
-
Save MeenachiSundaram/23ea129e72e2208a0eaae66e6e18d967 to your computer and use it in GitHub Desktop.
Unix Commands to be remembered
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## rsync files | |
| rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude | |
| ## Check If file exist and do | |
| #!/bin/bash | |
| file="/etc/hosts" | |
| if [ -f "$file" ] | |
| then | |
| echo "$file found." | |
| else | |
| echo "$file not found." | |
| fi | |
| ## TimeStamp | |
| echo $(date +"%d-%m-%Y-%H:%M:%S") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment