The touch
Tujuan utama perintah ini adalah memanipulasi cap waktu file, dan untuk membuat file.
Contohnya
1. membuat file
$ ls -l
total 0
$ touch file{1..3}
$ ls -l
total 0
-rw-rw-r--. 1 saml saml 0 Jan 12 13:33 file1
-rw-rw-r--. 1 saml saml 0 Jan 12 13:33 file2
-rw-rw-r--. 1 saml saml 0 Jan 12 13:33 file3
CATATAN: The total 0
Output dari ls -l
benar. Implementasi ini ls
menunjukkan jumlah blok yang digunakan oleh file ketika mereka terdaftar. Anda dapat meyakinkan diri sendiri tentang fakta ini dengan menambahkan -s
peralihan ke ls
. Ini akan mencantumkan blok yang digunakan oleh setiap file. Di sini saya telah menambahkan 2 karakter ke file1 & file2.
Contoh
$ ls -ls
total 8
4 -rw-rw-r--. 1 saml saml 3 Jan 13 12:07 file1
4 -rw-rw-r--. 1 saml saml 3 Jan 13 12:09 file2
0 -rw-rw-r--. 1 saml saml 0 Jan 13 12:05 file3
2. info waktu / tanggal suatu file - perintah stat
$ stat file1
File: ‘file1’
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd02h/64770d Inode: 11403667 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/ saml) Gid: ( 1000/ saml)
Context: unconfined_u:object_r:user_home_t:s0
Access: 2014-01-12 13:33:38.279456149 -0500
Modify: 2014-01-12 13:33:38.279456149 -0500
Change: 2014-01-12 13:33:38.279456149 -0500
Birth: -
Kita dapat menggunakan touch
untuk memanipulasi berbagai cap waktu pada file yang diberikan.
3. kutipan dari halaman manual sentuh
-a change only the access time
-m change only the modification time
-t STAMP
use [[CC]YY]MMDDhhmm[.ss] instead of current time
4. memanipulasi waktu akses
$ touch -a -t200001010000 file1
$ stat file1
File: ‘file1’
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd02h/64770d Inode: 11403667 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/ saml) Gid: ( 1000/ saml)
Context: unconfined_u:object_r:user_home_t:s0
Access: 2000-01-01 00:00:00.000000000 -0500
Modify: 2014-01-12 13:33:38.279456149 -0500
Change: 2014-01-12 13:38:52.023434696 -0500
Birth: -
5. memanipulasi waktu modifikasi
$ touch -m -t200001010000 file1
$ stat file1
File: ‘file1’
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd02h/64770d Inode: 11403667 Links: 1
Access: (0664/-rw-rw-r--) Uid: ( 1000/ saml) Gid: ( 1000/ saml)
Context: unconfined_u:object_r:user_home_t:s0
Access: 2000-01-01 00:00:00.000000000 -0500
Modify: 2000-01-01 00:00:00.000000000 -0500
Change: 2014-01-12 13:39:31.060432026 -0500
Birth: -
Anda mungkin bertanya-tanya tentang waktu perubahan (waktu). Itu tidak bisa dimanipulasi menggunakan touch
. Itu melacak waktu salah satu data meta disentuh pada file. Lihat U&L T&J ini untuk perincian lebih lanjut, berjudul: Apa yang dapat Anda lakukan pada file tanpa memicu cap waktu "Ubah"? .
echo -n > filename
, Anda dapat menjalankan yang berikut ini:>filename