I need to parse a date (format: YYYY-MM-DD hh:mm:ss) in bash. I'd like to end up with all fields (years, months, days, hours, minutes, seconds) in different variables.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Does it have to be bash? You can use the
This parses the given date and displays it in the chosen format. You can adapt that at will to your needs. |
|||||||
|
|
This is simple, just convert your dashes and colons to a space (no need to change IFS) and use 'read' all on one line:
For example:
|
||||
|
|||||
|
|
Pure Bash:
|
|||
|
|
The array method is perhaps better, but this is what you were specifically asking for:
|
|||
|
|
another pure bash
|
|||
|
|
|
have you tried using cut?
something like this:
dayofweek= |
|||
|
|
instead of using the shell scripting,incorporate in your scripting itself like below wheever you need:
a will be year b will be seconds c will be hours. and so on. |
|||
|
|