diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-01-11 14:05:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 14:05:01 +0530 |
commit | 4a46214e5a471644bc4170b3cade6f5093803e68 (patch) | |
tree | 2a1503e8ef0e6f544662f14cdcc6a980a8bfb769 | |
parent | ef6dd286251a18780dd1fe117f9058437fc19128 (diff) | |
parent | bcefaaf7b7048f07bb27a4aa920a43e242141c3d (diff) |
Merge pull request #3677 from neslinesli93/feature/add_more_to_bash_it
[bash/it-it] Add explanation of `=~` and `alias` inside bash/it-it
-rw-r--r-- | it-it/bash-it.html.markdown | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/it-it/bash-it.html.markdown b/it-it/bash-it.html.markdown index efc47969..099cc681 100644 --- a/it-it/bash-it.html.markdown +++ b/it-it/bash-it.html.markdown @@ -140,6 +140,25 @@ then echo "Questo verrà eseguito se $Nome è Daniya O Zach." fi +# C'è anche l'operatore `=~`, che serve per confrontare una stringa con un'espressione regolare: +Email=me@example.com +if [[ "$Email" =~ [a-z]+@[a-z]{2,}\.(com|net|org) ]] +then + echo "Email valida!" +fi +# L'operatore =~ funziona solo dentro alle doppie parentesi quadre [[ ]], +# che hanno un comportamento leggermente diverso rispetto alle singole [ ]. +# Se vuoi approfondire, visita questo link (in inglese): +# http://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs + +# Usando `alias`, puoi definire nuovi comandi o modificare quelli già esistenti. +# Ad esempio, così puoi ridefinire il comando ping per inviare solo 5 pacchetti +alias ping='ping -c 5' +# "Scavalca" l'alias e usa il comando vero, utilizzando il backslash +\ping 192.168.1.1 +# Stampa la lista di tutti gli alias +alias -p + # Le espressioni sono nel seguente formato: echo $(( 10 + 5 )) |