How to write script that behaves both in interactive and non interactive mode


 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions How to write script that behaves both in interactive and non interactive mode
# 1  
Old 08-16-2009
Question How to write script that behaves both in interactive and non interactive mode

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines.
It then prompts for deletion of the file.
If user supplies arguments with the script , then it works on those files only.

Please help me with this script... Smilie
# 2  
Old 08-16-2009
Is this homework?
# 3  
Old 08-16-2009
Franklin,
I am way too old for homework but I could use the same script for housekeeping ... just too stupid to write it myself and too lazy to do it manually Smilie

Rgds
zxmaus
# 4  
Old 08-16-2009
Needs a precise definition of a "C program" file on the OP's server and a good overview of the directory structure and permissions.

The implication is that a non-root users will run a root script which displays the header of each "C program" source under their control and then prompts them to decide whether to delete that program source. Should they provide filename(s) as parameters to the script, the script will then only prompt the user to delete those named files.


(I'm backing off on this one because the requirement is much too vague).
# 5  
Old 08-16-2009
More Info.

Quote:
Originally Posted by methyl
Needs a precise definition of a "C program" file on the OP's server and a good overview of the directory structure and permissions.

The implication is that a non-root users will run a root script which displays the header of each "C program" source under their control and then prompts them to decide whether to delete that program source. Should they provide filename(s) as parameters to the script, the script will then only prompt the user to delete those named files.


(I'm backing off on this one because the requirement is much too vague).
The main problem Im facing with this question is how to make the program pick up a C program in case no command line arguments are specified .

Code :

Code:
ls -lrt *.C

Please elaborate it .

Last edited by rits; 08-16-2009 at 06:44 PM.. Reason: needs editing for better understanding of question
# 6  
Old 08-16-2009
Hi rits,
As this is homework, we won't give you a full solution, just tips and help on very specific problems within your question. Try to break it down into exactly where you are stuck, and show what you have done so far if you want help with the overall outline.

Your 'ls' command looks like it should do what you want but try leaving out the 'l' flag as I don't think you actually need to care about the dates and permissions of the files, just the first 10 filenames.
# 7  
Old 08-16-2009
Quote:
Originally Posted by rits
...
Code :

Code:
ls -lrt *.C

Please elaborate it .
The manual pages do a very good job of elaborating that command.

Code:
man ls
info ls

So I'd recommend you spend some time reading the manual pages or a good Unix/Linux book before rushing off to ask a question like that.

tyler_durden
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

How to write automated interactive shell script?

Hello everyone, I just want to write a shell script for automatic feeding the username and password prompts when running my commands, I tried this one but it did not work. Please help me for any way out. #!/bin/bash #!/usr/bin/expect cd ~/workspace/mimosanetworks_mimosa-nms ls -ltr ... (5 Replies)
Discussion started by: sandy-sm
5 Replies

2. Shell Programming and Scripting

SFTPing non-interactive mode

Hi All, I need to sftp without any intervention.(LInux,Ksh) I have tried some ideas listed here...but its not working... Please advise on it. (1 Reply)
Discussion started by: jesu
1 Replies

3. UNIX for Advanced & Expert Users

sudo in non interactive mode

Hi , I login to unix using my id and then do a sudo to execute any programs i want. sudo su - <id> password : xxxxxxx Is there a way to make it non interactive so that i can use it in shell script. (1 Reply)
Discussion started by: ashwin3086
1 Replies

4. Solaris

Doubt in zlogin non interactive mode........

I want zlogin -C as non interactive mode so after booting the zone I created a file sysidcfg in /etc directory of the zone the sysidcfg file info as shown below. system_locale=C terminal=dtterm network_interface=primary { hostname=my-zone } security_policy=NONE... (1 Reply)
Discussion started by: vijaysachin
1 Replies

5. Homework & Coursework Questions

Help with Interactive / Non Interactive Shell script

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (1 Reply)
Discussion started by: rits
1 Replies

6. Shell Programming and Scripting

script to non interactive mode

Gud morning everybody, I need small help form you people,Please advice me. I have a utility(adpatch) which takes 10-15 prompts, i want to automate this by calling this utility in shell script. Now my qiestion i want to run the script in non interactive mode. An example. $adpatch... (1 Reply)
Discussion started by: swetham.apps
1 Replies

7. Shell Programming and Scripting

how to write a shell script to login to a system which is interactive.

Can anybody help me to write a shell script to login interactive system once u open a connection using telnet it will ask for USERCODE: PASSWORD: DOMAIN: (1 Reply)
Discussion started by: sudhakaryadav
1 Replies

8. UNIX for Advanced & Expert Users

SU command in non interactive mode

Can i run the SU command in a non interactive mode. What i want to do is to pass the username and the password as commandline or batch parameters. Please let me if its possible and how to pass them. A sample file will be appreciated. Thanks, (6 Replies)
Discussion started by: rohitag
6 Replies

9. Shell Programming and Scripting

Perl Interactive mode

Hi All, Does perl has an interactive mode like other shell? If there is, can any one show me the equivalent code for the below csh script ? This csh code prompts user for their name and prints the name. #!/bin/csh echo -n "Pls enter the your name: " set name = ($<) echo "You hav... (2 Replies)
Discussion started by: Raynon
2 Replies

10. UNIX for Dummies Questions & Answers

Interactive Mode?

:confused: Can anyone please tell me how to get into Interactive Mode? (2 Replies)
Discussion started by: Nomad
2 Replies
Login or Register to Ask a Question