How to output the results of the AT command - properly!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to output the results of the AT command - properly!
# 1  
Old 12-01-2005
How to output the results of the AT command - properly!

Hi,

I am new to UNIX and I am more used to simple commands like those in VMS.

One of them is the ability to get the output from a job using the /out=<file> command in VMS.

I want to submit a job (a set of unix commands) using the AT command but to get the output in a file like that used in VMS.

Now I know many of you are saying, "just redirect it using the '>' character'. I tried this and it's not producing what I expected. I don't think it's as simple as that.

For example (the qdesign command is a powerhouse (COGNOS) command, and not a unix command).

Here is my BAT file ...

#!/bin/csh

/bin/date

################################################################
# Recompile global QUICK screens, for Sydney
qdesign dict=/mis/sydmips/obj/phd.pdc << 'flag1'
use /mis/sydmips/obj/compilemips.qks nolist
exit
'flag1'


I've tried submitting this with ...

$ at -c -f compile.bat now > compile.out

I get only the line that says it submitted the command

$ echo compile.out | at -c -m now

I get an email to say that it was "run", but no standard output of the BAT file!

$ at -c -m now < compile.bat

Again I get a job number, an email to say it ran but no actual output.

How do I get actual output from the compile.bat routine, like as if I was running it online!?

Thank you
# 2  
Old 12-02-2005
How to output the results of the AT command - properly!

I would redirect my output in the file directly (as logging) like this:

#!/bin/csh

(
/bin/date

################################################################
# Recompile global QUICK screens, for Sydney
qdesign dict=/mis/sydmips/obj/phd.pdc << 'flag1'
use /mis/sydmips/obj/compilemips.qks nolist
exit
'flag1'
) > logfile 2>&1


or just for the HERE-document:

#!/bin/csh

/bin/date

################################################################
# Recompile global QUICK screens, for Sydney
qdesign dict=/mis/sydmips/obj/phd.pdc << 'flag1' > logfile 2>&1
use /mis/sydmips/obj/compilemips.qks nolist
exit
'flag1'

Last edited by brouw005; 12-02-2005 at 09:54 AM..
# 3  
Old 12-04-2005
No it did not work actually

I am getting "too many ('s" error now.

The other issue is that is sends the output to the MAIL box and not to the file I specified in the redirection. And this is even without the "at -m" option.

Please help!

Last edited by SpanishPassion; 12-04-2005 at 07:34 PM.. Reason: Mistake in wording
# 4  
Old 12-04-2005
Oh and the 2nd version did not work either. I got "ambiguos redirecting", which again I had to use MAIL to view the error.
# 5  
Old 12-04-2005
This is more like it. I was puzzled by your response stating that it had worked. You are using csh. The redirection code brouw005 used would work in sh, ksh, or bash, but not csh. Writing scripts in csh is not wise. Since you're new to Unix, you should start with a better shell. For a list of reasons, see Csh Programming Considered Harmful. One more reason: there are very few csh experts around to help you.

I think that:
) >& logfile
might work for you. But no money back guarantees. I switched to ksh as soon as I could and I don't remember csh very well.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Redirecting the results to different output files

Hi All, I am trying a shell script and need your help on taking the results to different output files. I have tried the below code: nawk ' {CNF = (length()-10)/7 printf "%9s", substr ($0, 1, 9) for (i=0; i<=CNF; i++) T = substr ($0, 10+i*7, 7) TMP = 100 - (T + T + T + T + T + T + T + T... (24 Replies)
Discussion started by: am24
24 Replies

2. UNIX for Beginners Questions & Answers

sed command not working properly

This is my sample file cat bipin.txt Unix is an OS Unix has its own commmands Unix is a user friendly OS Unix is platform independent Unix is a time sharing OS the best OS to learn is Unix Abinitio uses Unix in backend When i use sed 's/Unix/Linux/' bipin.txt , only the first... (2 Replies)
Discussion started by: Bipin_1991
2 Replies

3. Shell Programming and Scripting

Get the return value and get the output to $results

cmd() { echo " " echo "$(whoami)@$(hostname):$(pwd)# $*" results=`eval $*` echo $results } I want to get the eval $* 's return value and pass it to a new variable $val, and get "eval $*" 's the ... (7 Replies)
Discussion started by: yanglei_fage
7 Replies

4. Shell Programming and Scripting

Always output 6 columns regardless of search results

If I am searching for AA then then BB in a loop, how do I make the output always contain 6 columns of comma separated data even when there may only be 4 search matches? AA11 AA12 AA13 AA14 BB11 BB12 BB13 BB14 BB15 BB16 Final output: AA11,AA12,AA13,AA14,,,... (14 Replies)
Discussion started by: jojojmac5
14 Replies

5. Shell Programming and Scripting

Date command is not working properly

Hi, in my script, i take the last month by a=$(date --date '1 month ago' +%Y%m) i expect that it give me in this month "March" as result 201402, but linux gave me 201403. IMPe@ABC123:> ~/date --date '1 month ago' +%Y%m 201403 i'm reasonably confused. Any idea? Thanks in advance, ... (2 Replies)
Discussion started by: IMPe
2 Replies

6. Shell Programming and Scripting

Output of AWK Results

In the following line The AWK statement parses through a listing for files and outputs the results using the {print} command to the screen. Is there a way to (a) send the output to a file and (b) actually perform a cp cmd to copy the listed files to another directory? ls | awk -va=$a -vb=$b... (1 Reply)
Discussion started by: rdburg
1 Replies

7. Shell Programming and Scripting

Korn: How to zero fill df output so it will sort properly

I'm looking for a way in Korn shell to zero fill (or space fill) the output from df so that it will sort properly. "Raw" output from df -k: df -k Filesystem kbytes used avail capacity Mounted on /dev/vx/dsk/rootvol 4131866 3593302 497246 88% / /proc ... (9 Replies)
Discussion started by: shew01
9 Replies

8. Solaris

not getting the output properly

i am entering the command, not get the total out put see the output what i am getting. SQL> select dbms_metadata.get_ddl ('TABLESPACE','SYSTEM') FROM DUAL; DBMS_METADATA.GET_DDL('TABLESPACE','SYSTEM') -------------------------------------------------------------------------------- ... (0 Replies)
Discussion started by: pmrajesh21
0 Replies

9. Shell Programming and Scripting

Output in my shell isn't showing properly.

Hi! Can anyone tell me what went wrong in my shell script? for dt_val in `cut -f 1 -d '|' /prod/ods/satyaki/sqlldr/grp.dat` do echo $dt_val done And, the output is - 23 39 (7 Replies)
Discussion started by: satyakide
7 Replies

10. AIX

lvm_queryvg call does not work properly and results in a sudden memory rise.

On AIX 5.3 host, the lvm_queryvg call does not work properly and results in a sudden memory rise. This is happening on one particular host and the call works fine on another host. Is this a known issue and is there any patch available for this? (0 Replies)
Discussion started by: sandiworld
0 Replies
Login or Register to Ask a Question