Quantcast
Channel: Take Command / TCC
Viewing all articles
Browse latest Browse all 1683

Determine if Day of the Week is during the weekend

$
0
0
Here's a function that I am using to determine if the Day of the Week is during the weekend;
Code:
function weekend=`%@if[%@eval[%1 mod 6] = 1,1,0]`

If I want to see if the current day of the week is on the weekend, I can do;
Code:
echo %@weekend[%_dowi]

which returns 1 if it is the weekend, or 0 if it is not.

Joe

Viewing all articles
Browse latest Browse all 1683

Trending Articles