tldr/pages.de/common/fish.md

30 lines
516 B
Markdown
Raw Normal View History

2020-07-02 15:39:06 +01:00
# fish
> The Friendly Interactive SHell.
> Eine benutzerfreundliche Eingabeaufforderung.
> Mehr Informationen: <https://fishshell.com>.
2021-03-25 16:42:04 +00:00
- Starte fish:
2020-07-02 15:39:06 +01:00
`fish`
2021-03-25 16:42:04 +00:00
- Führe einen Befehl mit fish aus:
2020-07-02 15:39:06 +01:00
`fish -c "{{befehl}}"`
2021-03-25 16:42:04 +00:00
- Führe ein fish-Skript aus:
2020-07-02 15:39:06 +01:00
2021-03-25 16:42:04 +00:00
`fish {{pfad/zu/datei.fish}}`
2020-07-02 15:39:06 +01:00
2021-03-25 16:42:04 +00:00
- Überprüfe ein fish-Skript auf Syntaxfehler:
2020-07-02 15:39:06 +01:00
2021-03-25 16:42:04 +00:00
`fish --no-execute {{pfad/zu/datei.fish}}`
2020-07-02 15:39:06 +01:00
2021-03-25 16:42:04 +00:00
- Gib die Version von fish aus:
2020-07-02 15:39:06 +01:00
`fish --version`
2021-03-25 16:42:04 +00:00
- Setze und exportiere eine permanente Umgebungsvariable:
2020-07-02 15:39:06 +01:00
2021-03-25 16:42:04 +00:00
`set -Ux {{name}} {{wert}}`