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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -