switching between machines


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers switching between machines
# 1  
Old 04-28-2004
switching between machines

I work for a local authority, and have been asked to extend a project I recently worked on

currently there are two (2) menus in operation each menu allows us to allow or deny access to users

the problem the menus are on seperate machines
(Iwant to make these menus sub menus)

I want to write a script that allows me to have a main menu that allows me the option to select which sub menu I want and then that sub menu to appear

obviously I need to keep this main menu on one machine
# 2  
Old 04-28-2004
Create a master menu that branches to the local code for one sub-menu and a remote machine (rsh will let users run a remote script or command) for the other submenu.

That what you mean?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Case switching

Hello Folks I am writing this simple program but I am stuck at this point. Here is the snippet from my script where I have issues. 3) echo "Current Directory: $(pwd) Menu 3" echo -e "Enter a file name\n" read fname if then ... (5 Replies)
Discussion started by: Tuxidow
5 Replies

2. Programming

Switching over to C++

Hi, We've been using a perl script to extract datas from several logs to generate a report. I've been asked to rewrite the code in C++. I want to know if it is wise to have a code in C++ and will it be more faster than Perl? (23 Replies)
Discussion started by: Ribosome
23 Replies

3. Solaris

The switching in the different AP's

HI, I am using the windows 2003 server R2 in there we are using the putty as to access the different AP's now from the primary AP i want to login to several different AP's using a script what the script will do is :- input a text file in which list of different ap's and the corresponding... (0 Replies)
Discussion started by: amiglani
0 Replies

4. OS X (Apple)

vt switching

greetings, i hope this hasn't been covered previously. has anyone heard of a .kext or daemon that would allow linux or (open)solaris-like vt switching? googling didn't help much.. i know os x allows a '>console' login from loginwindow.app, but i'm mainly interested in this because there are... (0 Replies)
Discussion started by: bamdad
0 Replies

5. Solaris

Switching between sessions

Unix sys admin in training here and I was performing a rollout of java code. While rolling out my connection to the server was broken. I logged back on to the box and performed a ps -ef | grep 'user' . I could see that session and pid number. My question is was there anyway to resume or... (1 Reply)
Discussion started by: vedder191
1 Replies

6. AIX

switching users

Hi All, I used to know a comand that you could log in as another user from root, if you didn't know the password for the account. Can anyone let me know what it is? (2 Replies)
Discussion started by: banchee
2 Replies

7. AIX

Switching users

Hi I want to write a script which can switch between super users.But it asks for the password at the prompt.How can I manage in the script so that it didnt ask me for the password at the prompt. (1 Reply)
Discussion started by: monika
1 Replies

8. Shell Programming and Scripting

switching users

Hi I want to write a script which can switch between super users.But it asks for the password at the prompt.How can I manage in the script so that it didnt ask me for the password at the prompt. (1 Reply)
Discussion started by: monika
1 Replies

9. Shell Programming and Scripting

su (switching to other user)

Hi, what is the use of the double quotes and !! in the following code segment: su - user1 << ""!! > /dev/null 2>&1 echo "welcome user1" EOF !! also what is the difference between below: su - user1 << ""!! > /dev/null 2>&1 and su - $USER << ""!!!> /dev/null 2>&1. Note: $USER =... (2 Replies)
Discussion started by: bjagadeesh
2 Replies

10. Programming

switching directories in C

Can somebody please explain to me how I can change the current directory using C (if possible). I know i can get the current directory path using getcwd(), but how can I change the directory? (1 Reply)
Discussion started by: owijust
1 Replies
Login or Register to Ask a Question