Migrating to Directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Migrating to Directories
# 1  
Old 08-19-2009
Migrating to Directories

Hi All,

I want some command to migrate between the directories as below:

Code:
read x
cd /export/home/$x

Please advise.

Cheers,
Shazin

Last edited by Shazin; 08-19-2009 at 01:09 PM..
# 2  
Old 08-19-2009
The code given reads x from your keyboard then you go the directory /export/home/x OK, but what has that got to do with "migrate"?
If you want some help, you will have to be a bit more clear...
# 3  
Old 08-20-2009
Hi,

I just want the user to input the directory name in a script and it should migrate to the directory entered by the user.

Best Regards,
Shazin
# 4  
Old 08-20-2009
In other words all you are missing is
Code:
echo " Please enter the directory name : "

But you realized that at the end of the script it exits and its as if you did nothing...
Is that your issue?
# 5  
Old 08-20-2009
Hi,

The above script does not migrate to the required directory. It is as if nothing is happening.

Best Regards,
Shazin
# 6  
Old 08-20-2009
Exactly!
Once a script has finished its execution you find yourself where you started...
Unless you source:
Code:
ant:/home/vbe $ more gugu
echo "Please enter dir: "
read DIR
cd $DIR
ant:/home/vbe $ chmod 777 gugu        
ant:/home/vbe $ gugu
Please enter dir: 
script
ant:/home/vbe $ . gugu
Please enter dir: 
script
ant:/home/vbe/script $


Last edited by vbe; 08-20-2009 at 09:04 AM.. Reason: spelling...
# 7  
Old 08-20-2009
Hi,

but I hace to be careful were to place the script. Is is not possible if we can fix like for ex /home/vbe and then take for scripts as an entry form User and then migrate to the path. Like I have shown you at the starting on the thread.

Thanks a lot...

Regards,
Shazin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Giving read write permission to user for specific directories and sub directories.

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. This is for Solaris. Please help. (1 Reply)
Discussion started by: blinkingdan
1 Replies

2. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

3. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

4. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

5. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

6. Shell Programming and Scripting

Script for parsing directories one level and finding directories older than n days

Hello all, Here's the deal...I have one directory with many subdirs and files. What I want to find out is who is keeping old files and directories...say files and dirs that they didn't use since a number of n days, only one level under the initial dir. Output to a file. A script for... (5 Replies)
Discussion started by: ejianu
5 Replies

7. Shell Programming and Scripting

check if multiple directories exist else create missing directories

Hi , I 'm trying to check if multiple directories exist on a server, if not create the missing ones and print " creating missing directory. how to write this in a simple script, I have made my code complex if ; then taskStatus="Schema extract directory exists, checking if SQL,Count and... (7 Replies)
Discussion started by: ramky79
7 Replies

8. HP-UX

Migrating from HP-UX 11 to HP-UX 11.i?

Hi, I want to Migrate my machine from HP-UX 11 to HP-UX 11.i, regarding this i would like to know the difference and the advances b/w these two. If anyone have cookbook HP-UX 11 to HP-UX 11.i, then provide the link to me. Thanks in Advance. Sarwan (3 Replies)
Discussion started by: sarwan
3 Replies

9. HP-UX

When migrating from HP-UX 11.0 to HP-UX 11.i

Hi to all, I am migrating HP-UX 11.0 to HP-UX 11.i, The following list are the components which i used in HP-UX 11.0, Whether I can use this same components in HP-UX 11.i or I should upgrade any of software version with respect to HP-UX 11.i. Oracle 8.1.7 Tuxedo 8.0 BEA Message queue... (0 Replies)
Discussion started by: sweta
0 Replies
Login or Register to Ask a Question