1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages.hi/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

872 B

touch

एक फ़ाइल का उपयोग और संशोधन समय (atime, mtime) बदलें। अधिक जानकारी: https://manned.org/man/freebsd-13.1/touch

  • एक नई खाली फ़ाइल बनाएं (मौजूदा फ़ाइल के लिए समय बदल दें):

touch {{फ़ाइल का नाम}}

  • फ़ाइल को किसी विशिष्ट तिथि और समय पर सेट करें:

touch -t {{YYYMMDDHHMM.SS}} {{फ़ाइल का नाम}}

  • दूसरी फ़ाइल पर समय सेट करने के लिए फ़ाइल से समय का उपयोग करें:

touch -r {{पहला फ़ाइल का नाम}} {{दूसरा फ़ाइल का नाम}}