The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 09-09-2007
porter porter is offline
Registered User
 

Join Date: Jan 2007
Posts: 2,965
Quote:
Originally Posted by LAKSHMI NARAYAN View Post
#!/bin/ksh
dirpath=$1
cd dirpath
In your case, however you just need

Code:
#!/bin/ksh
dirpath=$1
cd $dirpath
Reply With Quote