hostname:> script
("." to run)>
hostname:> script
("." to run)> for (i = 10; i > 0; i--)
("." to run)> printf("%d... ", i);
("." to run)> printf("Blastoff!\n");
("." to run)> .
10... 9... 8... 7... 6... 5... 4... 3... 2... 1... Blastoff!
hostname:> script print("It is now " + new Date())
It is now Tue Oct 15 2019 05:33:01 GMT+0000 (UTC)