Skip to content

Instantly share code, notes, and snippets.

@fedir
Created May 22, 2013 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedir/5628976 to your computer and use it in GitHub Desktop.
Save fedir/5628976 to your computer and use it in GitHub Desktop.
Shows Easter date for Western & Orthodox Church calendars for next 10 years #bash #linux // inspired by @climagic cal example
#!/bin/bash
for i in {2014..2024}; do paste <(ncal -e $i) <(ncal -o $i);done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment