mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 02:17:56 +01:00
entr: add Italian translation.
This commit is contained in:
parent
43fa5d6c2a
commit
07f270b458
1 changed files with 19 additions and 0 deletions
19
pages.it/common/entr.md
Normal file
19
pages.it/common/entr.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# entr
|
||||
|
||||
> Esegui comandi arbitrari al cambiamento di file.
|
||||
|
||||
- Ricompila con `make` se qualsiasi file in quasiasi sottodirectory cambia:
|
||||
|
||||
`{{ag -l}} | entr {{make}}`
|
||||
|
||||
- Ricompila e testa con `make` se qualsiasi file sorgente `.c` nella cartella corrente cambia:
|
||||
|
||||
`{{ls *.c}} | entr {{'make && make test'}}`
|
||||
|
||||
- Invia il segnale `SIGTERM` ad un sottoprocesso ruby precedentemente avviato prima di eseguire `ruby main.rb`:
|
||||
|
||||
`{{ls *.rb}} | entr -r {{ruby main.rb}}`
|
||||
|
||||
- Esegui un comando con il file cambiato (`/_`) come argomento:
|
||||
|
||||
`{{ls *.sql}} | entr {{psql -f}} /_`
|
Loading…
Reference in a new issue