forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4eb022
commit f5343b9
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# touch | ||
|
||
> Atualizar as timestamps dos ficheiro para a hora atual. | ||
> Se o ficheiro não existir, cria ficheiro vazio, a menos que seja passado parâmetro -c ou -h. | ||
- Cria novo(s) ficheiro(s) vazio ou atualiza as timestamps para a hora atual: | ||
|
||
`touch {{ficheiro}}` | ||
|
||
- Define as timestamps de um ficheiro para a hora especificada: | ||
|
||
`touch -t {{YYYYMMDDHHMM.SS}} {{nome_ficheiro}}` | ||
|
||
- Usa as timestamps do ficheiro1 para definir as horas do ficheiro2: | ||
|
||
`touch -r {{ficheiro1}} {{ficheiro2}}` | ||
|
||
- Altera as timestamps de um ficheiro. Não cria novo ficheiro se não existir: | ||
|
||
`touch -c {{ficheiro}}` |