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.
what is the best way to increment a filename in a bash script so that the filename is different each time the script is run and file is saved? ie. filename+1, filename+2, etc. example used in tar backup.
Just a suggestion ... if you replace
date
in the script with
date +%Y%m%d-%H%M%S
you save yourself the awk'ing
and get a more easily (logically)
sortable set of filenames... and save
yourself the ":" in filenames, which
scp, for instance, doesn't like :}
Originally posted by slapNUT Yeah Tinksters is better. Except for that "weird European, puttin the year first" stuff. :P
Maybe:
date +%m%d%Y-%H%M%S
date +%Y%m%d-%H%M%S
That's not European, that's logical :} ... think
about it for a second. Once you have a date
range of more than a year it's stupid to sort
by months first. "My way" is also the way dates
are represented internally in all major SQL
databases, too.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.