Highlight today in Mac's cal

Mohsen

Every Mac comes with cal which shows a simple calendar of current month. Output is something like this:

   February 2014
Su Mo Tu We Th Fr Sa
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28

I was wondering if we can use some sed and date magic and highlight today's number using ANSI escape sequences. I haven't tried anything because I don't know much about sed.

mkc

Try this:

$ cal | grep -w -A4 -B6 $(date +%d)

-A4 and -B6 flags of grep will print 4 lines after and 6 lines before the matching line.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

jQuery ui datepicker: Remove yellow highlight on (unhighlight) today's

From Dev

Excel VBA highlight entire column according to today's date

From Dev

Highlight a cell if a referenced cell is today's month/day (not year)

From Dev

Zeller's congruence and cal command

From Dev

How can I make the `cal` tool in OSX highlight the current day?

From Dev

SSRS - range bar chart highlight today gridline

From Dev

Show today's birthday

From Dev

Angular Bootstrap DateTimePicker - Highlight Today Date on embedded Calender

From Dev

Angular ui bootstrap current date (today) highlight without selecting

From Dev

How can i highlight a Month row based on today() in Google Sheets

From Dev

How to autofocus with highlight blue color on today date in datepicker of angular material?

From Dev

Selected objects on Mac show background highlight instead of bounding rectangle highlight

From Dev

cal-heatmap onclick on day, scroll to the week's section

From Dev

Mac Prolog Console Text with black highlight

From Dev

How to Highlight the active Chrome Window- Mac

From Dev

Add A Year To Today's Date

From Dev

Query based on Today's date

From Dev

Today’s Extension Using SpriteKit

From Dev

Get today's date in PHP?

From Dev

Add A Year To Today's Date

From Dev

Today’s Extension Using SpriteKit

From Dev

Highlight line(s)/characters in WPF

From Dev

How to highlight a cell containing the name of a weekday in a row based on =Today() in Google Sheets

From Dev

How to highlight a cell containing the name of a weekday in a row based on =Today() in Google Sheets

From Dev

NSExtensionContext openURL not working on Mac OS X Today Widget

From Dev

Xamarin.Mac - How to highlight the selected text in a PDF file

From Dev

with VSCODE for mac is their a keyboard binding to open the current highlight file in the side bar?

From Dev

How to use today's date for a placeholder?

From Dev

Comparing string date with today's date

Related Related

  1. 1

    jQuery ui datepicker: Remove yellow highlight on (unhighlight) today's

  2. 2

    Excel VBA highlight entire column according to today's date

  3. 3

    Highlight a cell if a referenced cell is today's month/day (not year)

  4. 4

    Zeller's congruence and cal command

  5. 5

    How can I make the `cal` tool in OSX highlight the current day?

  6. 6

    SSRS - range bar chart highlight today gridline

  7. 7

    Show today's birthday

  8. 8

    Angular Bootstrap DateTimePicker - Highlight Today Date on embedded Calender

  9. 9

    Angular ui bootstrap current date (today) highlight without selecting

  10. 10

    How can i highlight a Month row based on today() in Google Sheets

  11. 11

    How to autofocus with highlight blue color on today date in datepicker of angular material?

  12. 12

    Selected objects on Mac show background highlight instead of bounding rectangle highlight

  13. 13

    cal-heatmap onclick on day, scroll to the week's section

  14. 14

    Mac Prolog Console Text with black highlight

  15. 15

    How to Highlight the active Chrome Window- Mac

  16. 16

    Add A Year To Today's Date

  17. 17

    Query based on Today's date

  18. 18

    Today’s Extension Using SpriteKit

  19. 19

    Get today's date in PHP?

  20. 20

    Add A Year To Today's Date

  21. 21

    Today’s Extension Using SpriteKit

  22. 22

    Highlight line(s)/characters in WPF

  23. 23

    How to highlight a cell containing the name of a weekday in a row based on =Today() in Google Sheets

  24. 24

    How to highlight a cell containing the name of a weekday in a row based on =Today() in Google Sheets

  25. 25

    NSExtensionContext openURL not working on Mac OS X Today Widget

  26. 26

    Xamarin.Mac - How to highlight the selected text in a PDF file

  27. 27

    with VSCODE for mac is their a keyboard binding to open the current highlight file in the side bar?

  28. 28

    How to use today's date for a placeholder?

  29. 29

    Comparing string date with today's date

HotTag

Archive