Last active
June 23, 2020 13:35
-
-
Save ijrodrigues/51393b70633d46b5fd85943dd966a496 to your computer and use it in GitHub Desktop.
Start to work
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/bash | |
echo "Abrindo sites comuns" | |
google-chrome https://github.com > /dev/null 2>&1 & | |
echo "Iniciando editores de texto" | |
~/Downloads/idea-IU-201.7846.76/bin/idea.sh > /dev/null 2>&1 & | |
echo "Iniciando containers do docker" | |
docker restart mysql > /dev/null 2>&1 & | |
docker restart dynamodb > /dev/null 2>&1 & | |
echo "Iniciando Franz" | |
franz > /dev/null 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment