Update 23-01-2020

This commit is contained in:
2020-01-25 06:47:22 +01:00
parent 1f6b5d13d8
commit f760227ba1
28 changed files with 1864 additions and 57 deletions

View File

@@ -0,0 +1,30 @@
# Exécuter un shell script depuis le Finder
- Renommer le script avec l'extension .command:
```bash
$ cp mkdocs.sh mkdocs.command
```
- Le rendre exécutable
```bash
$ chmod +x mkdocs.command
```
- Le script doit commencer par `!/bin/bash`
Pour le lancer depuis LaunchBar: Info Fichier -> Ouvrir avec -> iTem
Connaître le répertoire courant:
```bash
DIRNAME=`dirname "$0"`
```