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 | |
# Process aimed to make a fast and clean installation of the last version of Docker CE | |
# This script was written and tested on Ubuntu 14.04 | |
sudo apt-get update | |
sudo apt-get install \ | |
ca-certificates \ | |
curl \ | |
gnupg \ |
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 | |
# This script was written for Ubuntu 14.04, Ubuntu 16.04 and MacOS 10.13.5 | |
# Other operating systems may need a few changes | |
WORK_DIR=~/svn2git_`date "+%Y%m%d-%H%M%S"` | |
AUTHORS_FILE=$WORK_DIR/authors.txt | |
GITDIR_DIRTY=$WORK_DIR/dirty | |
GITDIR_FINAL=$WORK_DIR/final |
NewerOlder