Ajout Bash et ZSH
This commit is contained in:
parent
7503412260
commit
c5fb51f2b6
1 changed files with 9 additions and 1 deletions
10
README.md
10
README.md
|
@ -19,9 +19,17 @@ Script pour télécharger codium version portable en une ligne :
|
|||
## Exemple de raccourci
|
||||
Par exemple si le script est rangé dans `~/.secret`.
|
||||
|
||||
### Avec Bash / ZSH
|
||||
Dans `~/.bashrc` ou `~/.zshrc` :
|
||||
```bash
|
||||
alias updateCodium="$HOME/.secret/downloadVSCodium.sh"
|
||||
```
|
||||
Après ça, redémarrez Bash (votre shell) et écrivez `updateCodium` pour mettre-à-jour/installer Codium.
|
||||
|
||||
|
||||
### Avec Fish
|
||||
Dans `~/.config/fish/config.fish` :
|
||||
```bash
|
||||
abbr updateCodium '$HOME/.secret/downloadVSCodium.sh'
|
||||
```
|
||||
Après ça, redémarrez Fish et écrivez `updateCodium` pour mettre-à-jour/installer Codium.
|
||||
Après ça, redémarrez Fish (votre shell) et écrivez `updateCodium` pour mettre-à-jour/installer Codium.
|
||||
|
|
Reference in a new issue