1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 10:02:08 +02:00
tldr/pages.id/common/touch.md
K.B.Dharun Krishna 5257568887
pages.*: add standard translation (#9672)
* pages./: Automatically add alias pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages./: Automatically add links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Fix false positives from script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-12-29 08:41:44 +05:30

16 lines
493 B
Markdown

# touch
> Mengubah waktu akses (atime) dan waktu modifikasi (mtime) dari sebuah file.
> Informasi lebih lanjut: <https://manned.org/man/freebsd-13.1/touch>.
- Membuat file baru yang kosong atau mengubah waktu file yang telahj ada ke waktu sekarang:
`touch {{nama_file}}`
- Mengatur waktu sebuah file ke tanggal dan jam tertentu:
`touch -t {{YYYYMMDDHHMM.SS}} {{nama_file}}`
- Menggunakan waktu dari satu file untuk mengatur waktu file yang lain:
`touch -r {{nama_file}} {{nama_file2}}`