Advertisement
Wrigs

strftime - Custom Time Formatting Codes

Jan 15th, 2023 (edited)
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. Preferred:
  2. Date Format: %A, %B %d, %Y %l:%M %p
  3. Date Format: %m/%d/%Y %l:%M %p
  4. Date Format for Tooltip: %A, %B %d, %Y %l:%M %p %Z (DOY: %j)
  5.  
  6. Website: https://strftime.org/
  7.  
  8. %% a literal %
  9. %a locale's abbreviated weekday name (e.g., Sun)
  10. %A locale's full weekday name (e.g., Sunday)
  11. %b locale's abbreviated month name (e.g., Jan)
  12. %B locale's full month name (e.g., January)
  13. %c locale's date and time (e.g., Thu Mar 3 23:05:25 2005)
  14. %C century; like %Y, except omit last two digits (e.g., 21)
  15. %d day of month (e.g, 01)
  16. %D date; same as %m/%d/%y
  17. %e day of month, space padded; same as %_d
  18. %F full date; same as %Y-%m-%d
  19. %g last two digits of year of ISO week number (see %G)
  20. %G year of ISO week number (see %V); normally useful only with %V
  21. %h same as %b
  22. %H hour (00..23)
  23. %I hour (01..12)
  24. %j day of year (001..366)
  25. %k hour ( 0..23)
  26. %l hour ( 1..12)
  27. %m month (01..12)
  28. %M minute (00..59)
  29. %n a newline
  30. %p locale's equivalent of either AM or PM; blank if not known
  31. %P like %p, but lower case
  32. %r locale's 12-hour clock time (e.g., 11:11:04 PM)
  33. %R 24-hour hour and minute; same as %H:%M
  34. %s seconds since 1970-01-01 00:00:00 UTC
  35. %S second (00..60)
  36. %t a tab
  37. %T time; same as %H:%M:%S
  38. %u day of week (1..7); 1 is Monday
  39. %U week number of year, with Sunday as first day of week (00..53)
  40. %V ISO week number, with Monday as first day of week (01..53)
  41. %w day of week (0..6); 0 is Sunday
  42. %W week number of year, with Monday as first day of week (00..53)
  43. %x locale's date representation (e.g., 12/31/99)
  44. %X locale's time representation (e.g., 23:13:48)
  45. %y last two digits of year (00..99)
  46. %Y year
  47. %z +hhmm numeric timezone (e.g., -0400)
  48. %Z alphabetic time zone abbreviation (e.g., EDT)
Tags: Linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement