mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
[fish/all] Fix typos and mistakes (#5025)
This commit is contained in:
parent
ffb5b7988e
commit
564c7704f4
@ -71,7 +71,7 @@ or by opening the aforementioned web settings:
|
|||||||
Adding something to your fish PATH Variable is easy:
|
Adding something to your fish PATH Variable is easy:
|
||||||
|
|
||||||
```
|
```
|
||||||
> fish_path_add ~/cowsay
|
> fish_add_path ~/cowsay
|
||||||
```
|
```
|
||||||
|
|
||||||
Can you do that with bash, huh? No, you always have to look it up... It's just that easy!
|
Can you do that with bash, huh? No, you always have to look it up... It's just that easy!
|
||||||
@ -85,7 +85,7 @@ To get help, contact your local psychiatrist or type `man`. That will bring up t
|
|||||||
> man set
|
> man set
|
||||||
```
|
```
|
||||||
|
|
||||||
If you finally tried fish, you can see something other in fish that's really cool. Everything has cool colors, if you type in something wrong, it is red, without even executing, if you put something in quotes, you see where it ends and why that quote doesn't work, because there's another qoutation mark in the quote at position 26.
|
If you finally tried fish, you can see something other in fish that's really cool. Everything has cool colors, if you type in something wrong, it is red, without even executing, if you put something in quotes, you see where it ends and why that quote doesn't work, because there's another quotation mark in the quote at position 26.
|
||||||
|
|
||||||
fish has even more cool things, like wildcards.
|
fish has even more cool things, like wildcards.
|
||||||
For example, type
|
For example, type
|
||||||
@ -195,7 +195,7 @@ As with every shell, you can not only execute commands in the shell, but also as
|
|||||||
|
|
||||||
# Let's start with variables.
|
# Let's start with variables.
|
||||||
# for use inside a program, you can use the syntax
|
# for use inside a program, you can use the syntax
|
||||||
set name = 'My Variable'
|
set name 'My Variable'
|
||||||
|
|
||||||
# Use...
|
# Use...
|
||||||
set -x name value
|
set -x name value
|
||||||
|
@ -73,7 +73,7 @@ o aprendo l'interfaccia web:
|
|||||||
Aggiungere qualcosa alla variabile PATH di fish è semplice:
|
Aggiungere qualcosa alla variabile PATH di fish è semplice:
|
||||||
|
|
||||||
```
|
```
|
||||||
> fish_path_add ~/cowsay
|
> fish_add_path ~/cowsay
|
||||||
```
|
```
|
||||||
|
|
||||||
Questo puoi farlo con bash, eh? No, devi sempre cercarlo... Così è facile!
|
Questo puoi farlo con bash, eh? No, devi sempre cercarlo... Così è facile!
|
||||||
@ -197,7 +197,7 @@ Come per ogni shell, puoi non solo eseguire comandi nella shell, ma anche da fil
|
|||||||
|
|
||||||
# Cominciamo con le variabili.
|
# Cominciamo con le variabili.
|
||||||
# per l'uso interno a un programma, puoi usare la sintassi
|
# per l'uso interno a un programma, puoi usare la sintassi
|
||||||
set nome = 'La mia variabile'
|
set nome 'La mia variabile'
|
||||||
|
|
||||||
# Utilizzo...
|
# Utilizzo...
|
||||||
set -x nome valore
|
set -x nome valore
|
||||||
|
Loading…
Reference in New Issue
Block a user