This file contains 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
#!/bin/sh | |
if [ $1 == "help" ]; | |
then | |
echo "First argument: Path of file on Remote host. \nSecond argument: Path of directory on Local host.\nThird argument: OS type. | |
Forth argument: configure aws boolean values true/false.\nFifth argument: S3Uri." | |
else | |
scp -rv $6:$1 $2 | |
if [ $3 == "mac" ]; then | |
brew install awscli | |
else |
This file contains 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
package com.unique.identifyingdevices; | |
/** | |
* Created by sahir on 31/08/16. | |
*/ | |
import android.content.Context; | |
import android.provider.Settings; | |
import android.telephony.TelephonyManager; | |
import java.io.File; |
This file contains 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
Track User Location |