Search This Blog

Loading...

Thursday, April 9, 2009

TCL "Hello.tcl" Terminal

#!/usr/bin/tcsh
# Author: Peter Koshakji
# Date: 04/08/2009
# Filename: Hello.tcl
# Skill Level: Beginner
# Duty: Output hello world to the terminal console.
#
# Instructions:
# - Create a file Hello.tcl copy content
# - In a console, navigate to the file location
# - chmod 777 Hello.tcl
# - Execute the script: ./Hello.tcl

puts "Hello World from the TCL Shell"

0 comments: