notes on bash

This commit is contained in:
Lafrite 2014-02-19 15:16:59 +01:00
parent 39a486950d
commit 260ccbae90
2 changed files with 18 additions and 0 deletions

17
bash.mdwn Normal file
View File

@ -0,0 +1,17 @@
# Bash
## Manipulation d'image
## Appliquer à toutes les fichiers d'un dossier
for i in $; do quoiFaire; done
### Modifier la taille d'une image
convert IMG -resize 50% new_IMG
### Tourner en fonction des données exif
convert IMG -auto-orient new_IMG

View File

@ -2,3 +2,4 @@
* [[Python]]
* [[R]]
* [[Bash]]