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
| @powershell -NoProfile -ExecutionPolicy Bypass -Command "@('get.scoop.sh','chocolatey.org/install.ps1')|ForEach-Object{iex((New-Object Net.WebClient).DownloadString('https://'+$_))}" | |
| scoop install busybox git openssh python3 | |
| choco install -y procexp notepadplusplus filezilla ccleaner meld jdk8 maven heidisql nodejs.install |
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
| git clone --depth=1 https://github.com/marcorodas/ApuntesAndroid.git ApuntesAndroid | |
| # git clone --depth=1 https://marco_rodas@bitbucket.org/johannfjs/siniestro_integrado.git Johann | |
| # clone: Crea una copia local del repositorio central al cual llamará "origin" | |
| # Crea una carpeta .git donde se almacenan todos los commit | |
| # --depth=1: Sólo el último commit | |
| git fetch | |
| # fetch: Importa commits del repositorio remoto al local. | |
| # (http://git-scm.com/docs/git-fetch) | |
| # Si no se especifica ningún repositorio se usará el repositorio remoto "origin" |
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
| jar -cf jar-file input-files(s) //Create a jar file | |
| jar -tfv jar-file //View contents | |
| jar -xf jar-file archived-file(s) //Extract specific files | |
| jar -uf jar-file input-file(s) //Adding files | |
| zip -d jar-file archived-file //Delete specific file |
NewerOlder