Hi, This is what I am doin inside my script: <$loc_db="/libraries/mnt/searchfiler/db/ldb"> <exec cd $loc_db></exec> But the directory does not get changed. Regards, Gaurav
Unix 101: Changing the current directory in a child program will not affect the parent. "cd" works on the command line because it's built into the shell. You need to use the built-in cd command of vortex. <syscp cd $loc_db>