The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 08-22-2008
douknownam douknownam is offline
Registered User
  
 

Join Date: May 2004
Posts: 35
Calling on function from file??

This may sounds dumb, but can I call on a function from a file? For example, I have a function file full of functions like below (no shell designation):


Code:
func { echo "blah blah blah 1" }

func2 { echo "blah blah blah 2" }

func3 { echo "blah blah blah 3" }

Am I able to call on any one of these specific functions from another script? If so, how? TIA