Commit 96d8b55ac382e4f6a5f968da12abd0326995acc5
1 parent
e5f4e5e9
Exists in
master
and in
3 other branches
update comments
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
database/update/db-update-2016-06-23.sh
... | ... | @@ -2,7 +2,8 @@ |
2 | 2 | |
3 | 3 | # Pour Mac OS recent (10.10, Yosemite), la syntaxe du SED est differente |
4 | 4 | # Il faut donc faire une copie de ce fichier et transformer les instructions sed a l'interieur |
5 | -# Pour cela, il suffit d'executer ces 2 lignes : | |
5 | +# Pour cela, utiliser le script macos-db-update.sh | |
6 | +# Sinon, voici la procedure manuelle a suivre: | |
6 | 7 | # cp ce_script.sh ce_script_macosx.sh |
7 | 8 | # sed -e "s/ -i / -i '' /" -i '' ce_script_macosx.sh |
8 | 9 | ... | ... |
database/update/macos-db-update.sh
1 | +# Pour Mac OS recent (10.10, Yosemite), la syntaxe du SED est differente | |
2 | +# Il faut donc transformer les instructions sed a l'interieur des fichiers bash | |
3 | + | |
4 | +# USAGE: macos-db-update.sh db-update-xxxx-xx-xx.sh | |
5 | + | |
1 | 6 | cp $1 $1.macos |
2 | 7 | chmod +x $1.macos |
3 | 8 | sed -e "s/ -i / -i '' /" -i '' $1.macos | ... | ... |