मुझे पता है कि एक नियमित फ़ाइल के टाइमस्टैम्प को कैसे बदलना है:
touch -t 201301291810 myfile.txt
मैं सिम्बल के साथ ऐसा नहीं कर पा रहा था। क्या यह संभव है?
डिस्ट्रो: आरएचईएल 5.8
मुझे पता है कि एक नियमित फ़ाइल के टाइमस्टैम्प को कैसे बदलना है:
touch -t 201301291810 myfile.txt
मैं सिम्बल के साथ ऐसा नहीं कर पा रहा था। क्या यह संभव है?
डिस्ट्रो: आरएचईएल 5.8
जवाबों:
स्विच-एच जोड़ें
touch -h -t 201301291810 myfile.txt
Mandatory arguments to long options are mandatory for short options too.
-a change only the access time
-c, --no-create do not create any files
-d, --date=STRING parse STRING and use it instead of current time
-f (ignored)
-h, --no-dereference affect each symbolic link instead of any referenced
file (useful only on systems that can change the
timestamps of a symlink)
-m change only the modification time
-r, --reference=FILE use this file's times instead of current time
-t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time
आपको हाल ही के संस्करण की आवश्यकता हो सकती है touch
। यदि यह एक विकल्प नहीं है, और यदि आप C जानते हैं, तो आप इसे एक छोटा प्रोग्राम लिख सकते हैं, इसे स्वयं lutimes फ़ंक्शन का उपयोग करके कर सकते हैं ।
एक क्रूर बल तरीका इस प्रकार है:
0. delete the old symlink you wish to change
1. change the system date to whatever date you want the symlink to be
2. remake the symlink
3. return the system date to current.
lutimes
फ़ंक्शन का उपयोग करके एक प्रतीकात्मक लिंक के एटिएम और माइम को बदला जा सकता है। निम्न प्रोग्राम मेरे लिए MacOSX और Linux पर एक मनमानी फ़ाइल से प्रतीकात्मक लिंक पर दोनों बार कॉपी करने के लिए काम करता है:
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/time.h>
int
main(int argc, char **argv)
{
struct timeval times[2];
struct stat info;
int rc;
if (argc != 3) {
fprintf(stderr, "usage: %s source target\n", argv[0]);
return 1;
}
rc = lstat(argv[1], &info);
if (rc != 0) {
fprintf(stderr, "error: cannot stat %s, %s\n", argv[1],
strerror(errno));
return 1;
}
times[0].tv_sec = info.st_atime;
times[0].tv_usec = 0;
times[1].tv_sec = info.st_mtime;
times[1].tv_usec = 0;
rc = lutimes(argv[2], times);
if (rc != 0) {
fprintf(stderr, "error: cannot set times on %s, %s\n", argv[2],
strerror(errno));
return 1;
}
return 0;
}
यदि आप संकलित फ़ाइल को कॉल करते हैं copytime
, तो कमांड copytime file link
का उपयोग लिंक बनाने के लिए किया जा सकता है जिसमें समान एनीमे और माइम file
होता है। किसी अन्य फ़ाइल से समय की प्रतिलिपि बनाने के बजाय कमांड लाइन पर निर्दिष्ट समय का उपयोग करने के लिए कार्यक्रम को संशोधित करना बहुत मुश्किल नहीं होना चाहिए।