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
| #!/bin/bash | |
| sudo dpkg --get-selections |grep $1|awk '{system("echo "$1" hold | sudo dpkg --set-selections")}' |
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
| curl -s https://api.github.com/users/{username}/repos | grep clone_url | cut -d\" -f4|awk '{system("git clone "$1)}' |
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
| 1. install python 2.7 | |
| 2. install pip | |
| (https://pip.pypa.io/en/stable/installing/) | |
| 3. install virtualenv | |
| pip install virtualenv |