shell - Bash How to format a date -


I want to grep a file with the following date format:

  master24 April   

I currently have date + "% d% m% Y" and it is coming back 24 04, 2014.

How can I get the format "Thursday 24th April" to get?

So do I need day and date?

will suggest date + "% a% b% d"

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -