Users/maccs

InfoInfo
Search:    

Comments:

Note: You must be logged in to add comments

Hey there, I just wanted to let you know that you can surround code in braces, like this:

#Get the current year, julian day and previous 6 days in UTC
YEAR=`date -u +%Y`
YY=`date -u +%y`
DAY=`date -u +%j`
#NDAY=`echo $DAY + 1 | bc`
PDAY=`echo $DAY - 1 | bc`
P2DAY=`echo $DAY - 2 | bc`
P3DAY=`echo $DAY - 3 | bc`
P4DAY=`echo $DAY - 4 | bc`
P5DAY=`echo $DAY - 5 | bc`
P6DAY=`echo $DAY - 6 | bc`

To have it display nicer. It will remove all of the extra formatting for you. You can also upload source code as files to a page (Edit -> Upload Files) and then use the [[File(name)]] macro to refer to the file on the page.

Best, PhilipNeustrom

This is a Wiki Spot wiki. Wiki Spot is a non-profit organization that helps communities collaborate via wikis.