scripting Ctrl-D in a shell


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers scripting Ctrl-D in a shell
# 1  
Old 02-08-2008
scripting Ctrl-D in a shell

Hi, I want to use the "at" command in a loop to start different processes every hour or so, but I don't know how to script a Ctrl-D so I can escape from the "at" after the last command I want to run and then go to the next command in the loop.

Example:

i=1
while [ $i -lt 3 ]
do
j=$((i*60))
at now+"$i"min
cp file$i directory$i
##I want to put the Ctrl-D here so that the at command knows to stop after the cp ##command
Ctrl-D
i=$((i+1))
done


So, can someone please tell me how to script a Ctrl-D??
Thanks so much!
# 2  
Old 02-08-2008
Quote:
Originally Posted by etownbetty
Hi, I want to use the "at" command in a loop to start different processes every hour or so, but I don't know how to script a Ctrl-D so I can escape from the "at" after the last command I want to run and then go to the next command in the loop.
You do not need to use a ^D, because you can phrase the at-command in another way:

Code:
print - "command -options arguments" | at now+${var}min

Try it out on the command line:

Code:
print - "print hello world" | at now+1min

I hope this helps.

bakunin
# 3  
Old 02-11-2008
Ctrl-D can be inserted in vi editor by the following way.

Quote:
CTRL-V CTRL-D
No blanks between Ctrl-v and Ctrl-d
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Passing Ctrl+A in shell scripting

Hello , I'm writing script that i use screen to mutiplexe my screen and t not stop execution when ssh connection is closed whit my other PC . So my question is how to send Ctrl+A and Ctrl+D in shell scriting code :confused: Thanks (5 Replies)
Discussion started by: marwen_joe
5 Replies

2. Shell Programming and Scripting

Automation of keyboard inputs..like Ctrl+d and Ctrl+a

Hi..! I'm stuck with my automation of starting a process and keeping it running even after the current ssh session has exited.. So i'm trying to use command 'screen'. which is doing exactly what i wanted, But the problem is automation of the same. i will have to press Ctrl+a and Ctrl+d for... (2 Replies)
Discussion started by: chandana hs
2 Replies

3. UNIX for Dummies Questions & Answers

Ctrl-V + Ctrl-J for newline character does not work inside vi editor

Hi friends, I am trying to add a newline char ('\n') between the query and the commit statement in the following shell script. #! /bin/sh echo "select * from tab; commit;" > data.sql I have tried typing in "Ctrl-V + Ctrl-J" combination which has inserted ^@ (NUL) character but the commit... (1 Reply)
Discussion started by: royalibrahim
1 Replies

4. Shell Programming and Scripting

ctrl-c in shell script

The below script has Perl script in it where it gives the usage details. filer.sh echo echo -en "Enter filer : " read filer echo "test.pl -f $filer -F L" Output ========= The following hosts are online and available: Name Total Allocated Used ... (2 Replies)
Discussion started by: nareshkumar522
2 Replies

5. Shell Programming and Scripting

How to handle CTRL+Z or CTRL+C in shells script?

Hi, while executing shell script, in the middle of the process, if we kill the shell script( ctrl+z or ctrl+c), script will be killed and the files which using for the script will be in the folder. How to handle those scenarios. Is there any possibilities, if user breaks the script, I need to... (3 Replies)
Discussion started by: ckchelladurai
3 Replies

6. Linux

Passing ctrl + c in shell scripting

Hi, How to pass ctrl + c in shell scripting. Regards, shausy (6 Replies)
Discussion started by: shausy
6 Replies

7. Shell Programming and Scripting

Ctrl-C or Ctrl-Z causing exit the session

H! I have written script where it need to invoke the perl script in background, then write the pid in temp file then bring back the job to foreground. whenever the Ctrl-C or Ctrl-Z is pressed in the script has to exit and prompt should be dispalyed. but this script causing exit from shell session... (2 Replies)
Discussion started by: jramesh1
2 Replies

8. UNIX for Dummies Questions & Answers

alias in bash shell for CTRL + l

Is it possible to create an alias wherein it will use a keystroke. Like to clear the screen in bash i have to use CTRL + l. I want to make an alias 'c' out of this. Thanks. (6 Replies)
Discussion started by: or_knob
6 Replies

9. UNIX for Advanced & Expert Users

trap ctrl c in shell script

how to trap the ctrl c in unix shell script my script is running in while loop it should not be terminate with ctrl c. if i press ctrl c while running script it shloud ignore the same. please healp.......... thanks in advance (2 Replies)
Discussion started by: arvindng
2 Replies

10. AIX

Disable ctrl-c,ctrl-d,ctrl-d in ksh script

I wrote a ksh script for Helpdesk. I need to know how to disable ctrl-c,ctrl-z,ctrl-d..... so that helpdesk would not be able to get to system prompt :confused: (6 Replies)
Discussion started by: wtofu
6 Replies
Login or Register to Ask a Question