Sponsored Content
Full Discussion: Help on touch command
Top Forums Shell Programming and Scripting Help on touch command Post 302471185 by methyl on Friday 12th of November 2010 07:04:22 AM
Old 11-12-2010
Hmm, is the clock wrong on your server?
What is the output from:
Code:
date

More thoughts.
I don't know of a mainstream "ls" which outputs leading zeros on a day number "Oct 05 2010".
What Operating System and version are you running?
What did you type to display the sample directory listings?

Last edited by methyl; 11-12-2010 at 08:34 AM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Usage of Touch Command

HI all, I am wrkin on HP Unix .. can any1 let me know da usage of Touch command in shell scripting (1 Reply)
Discussion started by: ravi.sadani19
1 Replies

2. UNIX for Advanced & Expert Users

command 'touch -c file/dir'

Dear expert, what is this command touch -c filename using for? I find if execute and filename is existed, it update the date to now. If the filename is not exeisted, it don't create the file.. so what is this command using for? Thank a lot! (1 Reply)
Discussion started by: zp523444
1 Replies

3. UNIX for Dummies Questions & Answers

touch command

hello everyone i am new to this forum and was wondering if you all could help me out.... i am looking for a touch command that can touch directories as well as files that does not involve sygwin... any and all help would be appreiciated :D (3 Replies)
Discussion started by: OrthoProof USA
3 Replies

4. UNIX for Dummies Questions & Answers

reverse of touch command

If touch command sets the modification and access times of files to the current time of day, is there a command that could do the reverse of this? Say change the access times of files to an earlier time or date? Say I have this file: HOME> ls -l -rw-rw-r-- 1 orbix orbix 886 May... (1 Reply)
Discussion started by: Orbix
1 Replies

5. UNIX for Dummies Questions & Answers

touch command help

Hi, This might be the stupidest question ever but here it goes, i need to create a file with the name Hello! It's $s It using the touch command but whenever i use touch 'Hello! It's $s' i get s is undefined touch Hello! It's $s i get ' unmatched Please help ^_^ (6 Replies)
Discussion started by: wsn
6 Replies

6. UNIX for Dummies Questions & Answers

how to get the timestamp using touch command

Can any one provide answer for the below 3 requirements, 1. file.txt grep "name" file.txt > file1.txt rm -f file.txt mv file1.txt file.txt as per abov, a pattern grepped in file.txt and the content moved to again file.txt My need is i want the timestamp of file.txt before chaning and... (3 Replies)
Discussion started by: prsam
3 Replies

7. UNIX for Dummies Questions & Answers

touch command

Is there a way to do... touch ./config/newdir/newfile if neither newdir and newfile exists? man touch tells me there's not (?) Is out there another tool to do that? Thx in advance! :b: (6 Replies)
Discussion started by: funyotros
6 Replies

8. Shell Programming and Scripting

Issue with touch command

Hi, I have a touch command in my script which creates / updates a file TODAY. Then i try to find the list of files which are newer than this TODAY file. touch `date '+%m%d'`0000 TODAY cd /auto/users-35/p494856/learning/filetransfer/ find . -name "*csv" -newer... (3 Replies)
Discussion started by: arunkumarmc
3 Replies

9. UNIX for Dummies Questions & Answers

Using touch command in ftp

hi , I am transferring files from one unix server to another, after transfer of a file i want to touch the same file name in another directory in the destination server. How can i touch a file when i am in ftp prompt on the source server. Thanks in advance (2 Replies)
Discussion started by: nick1982
2 Replies

10. UNIX for Advanced & Expert Users

Help with Touch Command

Hello, I am trying to use touch command to create 1200 .txt files. I am using this, but it is not working. touch `seq 1 1200`.txt Regards, Siddhesh.K (5 Replies)
Discussion started by: Siddheshk
5 Replies
STRPTIME(3)						   BSD Library Functions Manual 					       STRPTIME(3)

NAME
strptime -- converts a character string to a time value LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <time.h> char * strptime(const char * restrict buf, const char * restrict format, struct tm * restrict tm); DESCRIPTION
The strptime() function converts the character string pointed to by buf to values which are stored in the tm structure pointed to by tm, using the format specified by format. The format string consists of zero or more conversion specifications, whitespace characters as defined by isspace(), and ordinary characters. All ordinary characters in format are compared directly against the corresponding characters in buf; comparisons which fail will cause strptime() to fail. Whitespace characters in format match any number of whitespace characters in buf, including none. A conversion specification consists of a percent sign '%' followed by one or two conversion characters which specify the replacement required. There must be white-space or other non-alphanumeric characters between any two conversion specifications. Conversion of alphanumeric strings (such as month and weekday names) is done without regard to case. Conversion specifications which cannot be matched will cause strptime() to fail. The LC_TIME category defines the locale values for the conversion specifications. The following conversion specifications are supported: %a the day of week, using the locale's weekday names; either the abbreviated or full name may be specified. %A the same as %a. %b the month, using the locale's month names; either the abbreviated or full name may be specified. %B the same as %b. %c the date and time, using the locale's date and time format. %C the century number [0,99]; leading zeros are permitted but not required. This conversion should be used in conjunction with the %y conversion. %d the day of month [1,31]; leading zeros are permitted but not required. %D the date as %m/%d/%y. %e the same as %d. %F the date as %Y-%m-%d (the ISO 8601 date format). %g the year corresponding to the ISO week number, without the century. (A NetBSD extension.) %G the year corresponding to the ISO week number, with the century. (A NetBSD extension.) %h the same as %b. %H the hour (24-hour clock) [0,23]; leading zeros are permitted but not required. %I the hour (12-hour clock) [1,12]; leading zeros are permitted but not required. %j the day number of the year [1,366]; leading zeros are permitted but not required. %k the same as %H. %l the same as %I. %m the month number [1,12]; leading zeros are permitted but not required. %M the minute [0,59]; leading zeros are permitted but not required. %n any white-space, including none. %p the locale's equivalent of a.m. or p.m. %r the time (12-hour clock) with %p, using the locale's time format. %R the time as %H:%M. %S the seconds [0,61]; leading zeros are permitted but not required. %s the number of seconds since the Epoch, UTC (see mktime(3)). (A NetBSD extension.) %t any white-space, including none. %T the time as %H:%M:%S. %u the day of the week as a decimal number, where Monday = 1. (A NetBSD extension.) %U the week number of the year (Sunday as the first day of the week) as a decimal number [0,53]; leading zeros are permitted but not required. All days in a year preceding the first Sunday are considered to be in week 0. %V the ISO 8601:1988 week number as a decimal number. If the week (starting on Monday) that contains January 1 has more than three days in the new year, then it is considered the first week of the year. If it has fewer than four days in the new year, then it is consid- ered the last week of the previous year. Weeks are numbered from 1 to 53. (A NetBSD extension.) %w the weekday as a decimal number [0,6], with 0 representing Sunday; leading zeros are permitted but not required. %W the week number of the year (Monday as the first day of the week) as a decimal number [0,53]; leading zeros are permitted but not required. All days in a year preceding the first Monday are considered to be in week 0. %x the date, using the locale's date format. %X the time, using the locale's time format. %y the year within the 20th century [69,99] or the 21st century [0,68]; leading zeros are permitted but not required. If specified in conjunction with %C, specifies the year [0,99] within that century. %Y the year, including the century (i.e., 1996). %z an ISO 8601 or RFC-2822 timezone specification. This is one of the following: the offset from Coordinated Universal Time ('UTC') spec- ified as: ``[+-]hhmm'', ``[+-]hh:mm'', or ``[+-]hh''; 'UTC' specified as: ``GMT'' ('Greenwich Mean Time'), ``UT'' ('Universal Time'), or ``Z'' ('Zulu Time'); a three character US timezone specified as: ``EDT'', ``EST'', ``CDT'', ``CST'', ``MDT'', ``MST'', ``PDT'', or ``PST'', with the first letter standing for 'Eastern' (``E''), 'Central' (``C''), 'Mountain' (``M'') or 'Pacific' (``P''), and the sec- ond letter standing for 'Daylight' (``D'' or summer) time or 'Standard' (``S'') time; a single letter military timezone specified as: ``A'' through ``I'' and ``K'' through ``Y''. (A NetBSD extension.) %Z timezone name or no characters when time zone information is unavailable. (A NetBSD extension.) %% matches a literal `%'. No argument is converted. Modified conversion specifications For compatibility, certain conversion specifications can be modified by the E and O modifier characters to indicate that an alternative for- mat or specification should be used rather than the one normally used by the unmodified conversion specification. As there are currently neither alternative formats nor specifications supported by the system, the behavior will be as if the unmodified conversion specification were used. Case is ignored when matching string items in buf, such as month and weekday names. RETURN VALUES
If successful, the strptime() function returns a pointer to the character following the last character parsed. Otherwise, a NULL pointer is returned. SEE ALSO
ctime(3), isspace(3), localtime(3), strftime(3), tm(3) STANDARDS
The strptime() function conforms to X/Open Portability Guide Issue 4 (``XPG4''). BUGS
The %Z format specifier only accepts timezone abbreviations of the local timezone, or the value ``GMT''. This limitation is caused by the ambiguity of overloaded timezone abbreviations, for example EST is both Eastern Standard Time and Eastern Australia Summer Time. BSD
April 12, 2011 BSD
All times are GMT -4. The time now is 09:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy