Skip to content

Instantly share code, notes, and snippets.

@shadow-identity
Forked from mindjiver/is_it_friday.sh
Created July 5, 2013 09:30
Show Gist options
  • Save shadow-identity/5933290 to your computer and use it in GitHub Desktop.
Save shadow-identity/5933290 to your computer and use it in GitHub Desktop.
#!/bin/bash
date=$(unset LC_TIME && date +%u)
if [ $date -eq 5 ]; then
echo "YES!"
else
echo "NO! :("
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment