ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
However, my suggestion was not:
stat -c %Y vs.exe | awk '{printf $1 "\n"}'
but:
stat -c %y vs.exe | awk '{printf $1 "\n"}'
Please note that letter "y" is lower case in my code. It makes a great difference!
As for the code: it uses awk, which I found one of the most useful tools (almost like grep or sed).
awk treats the input line as a (database) record containing fields, using (by default) the space character as the field separator (but a different field separator can be specified in the command).
Then you can refer to any field of the line using its index ($1, $2, $3, etc.)
Examples:
stat -c %y vs.exe | awk '{printf $1 ":" $3 "\n"}'
will print the first and the third fields on each line, putting ":" between the fields.
stat -c %y vs.exe | awk '{printf $1 ":" $3 }'
will print the same, but on one single output line, because there is no newline "\n" specified.
Apart from just printing specific parts (fields) of each line, you can perform calculations or sums based on them, and all in one command line.
I browsed google for a way to use a bash script for printing the date of files onto an html page I have going that indexes files in my directory. http://relik.ath.cx/unused/ should show you what Im talking about. Anways I wanted to know if there was a way I could make
MODDATE=$(stat -c %y test.txt)
MODDATE=${MODDATE%% *}
print out the time and maybe the permissions of the file. http://relik.ath.cx/unused/xhtml_html for anyone that wants a directory index just run this script in a place that doesn't have an index.html file you plan on keeping and contains html files you want listed.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.