Sponsored Content
Full Discussion: exec comand
Top Forums UNIX for Dummies Questions & Answers exec comand Post 82951 by mkan on Thursday 8th of September 2005 11:28:44 PM
Old 09-09-2005
is it possible for u to tell me wat this implies
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mount comand

Dear experts: I am installing software on Unix via telnet using CD on my NT workstation. What kind of NFS & mount comands I should run in the beginning ? (what exactly should be <drive for cdrom> and <mount ditectory> in the mount comand? Thanks in advance, etc.. (6 Replies)
Discussion started by: lostam
6 Replies

2. Shell Programming and Scripting

how to use sleep comand for milliseconds?

how to use sleep comand for milliseconds? (3 Replies)
Discussion started by: brkavi_in
3 Replies

3. Shell Programming and Scripting

Testing a comand in the script

Hi everyone , i am new to shell scripting and am having some problem to test if this line has been executed well and display a pass message on the screen or fail if not sqlplus XXTEST/$2 <<END > $XXTEST_TOP/log/$0.log @$XXTEST_TOP/admin/sql/XXTEST_SPE1_XX_QUOTE_DETAILS_TBL.sql XXTEST$2... (2 Replies)
Discussion started by: Lutchumaya
2 Replies

4. Solaris

comand df -k

I need to know the available space in my unix. when making a df -k it shows me the following thing: /dev/vx/dsk/emc2/vol06 136764867 121542767 1545614 99% /emc06 would need them to explain to me well the command. since under the column avail the resulting value is... (2 Replies)
Discussion started by: roviedo
2 Replies

5. HP-UX

collect comand usage

I would like to set up monitoring of CPU, memory and disk utilization as a cron job daily with this command, on a Tru64 machine. I presume that it can be done similar to syslog.dated procedure, so that every day i get a file in, for example, /var/adm/collect.dated/... Specifically, i would like... (0 Replies)
Discussion started by: veccinho
0 Replies

6. Solaris

Using dd comand

Hello peolple i have to check a tape with de dd comand and redirect the exit dd if=/dev/rmt/0cn ibs=1024k of=/dev/null i need that the exit from that commando go to a log if a do this dd if=/dev/rmt/0cn ibs=1024k of=/dev/null > x.log don`t send me nothing to the log only in the screen. I need... (1 Reply)
Discussion started by: enkei17
1 Replies

7. AIX

smit see comand performed ??

i in smit , press F6 , smit fs , Change / Show Characteristics of an Enhanced Journaled File System then F6 to see the comand , how can i see the command performed ?? x() { │ │ LIST= ... (5 Replies)
Discussion started by: prpkrk
5 Replies

8. Shell Programming and Scripting

Script Variables Inquiry, Values Okay in Standalone Exec, No-Show in Cron Exec

I have the following bash script lines in a file named test.sh. #!/bin/bash # # Write Date to cron.log # echo "Begin SSI Load $(date +%d%b%y_%T)" # # Get the latest rates file for processing. # d=$(ls -tr /rms/data/ssi | grep -v "processed" | tail -n 1) filename=$d export filename... (3 Replies)
Discussion started by: ginowms
3 Replies

9. Shell Programming and Scripting

UNIX comand

Team, I need unix command to grep directory part from the string for example I have a texts something like /apps/opt/data/current/spool/test.dbf /apps/opt/archive/../../test.dbf I need only directory part from that string like my out put will /apps/opt/data/current/spool/... (1 Reply)
Discussion started by: asappidi
1 Replies

10. Shell Programming and Scripting

Help with shell 'select' comand

Oracle Linux5.6 64 bit Need some help with use of ‘select' command. Given the following: PS3='Select recovery SCN: ' select rcvscn in ` sqlplus -s rman/fubar@rmcat <<EOF1 select db_name, CHECKPOINT_CHANGE# SCN, to_char(CHECKPOINT_TIME,'dd-Mon-yyyy... (2 Replies)
Discussion started by: edstevens
2 Replies
ICK(1)							      General Commands Manual							    ICK(1)

NAME
ick - INTERCAL compiler SYNOPSIS
ick [options] file... ick -e [options] intercal-file [non-intercal-file...] [library...] DESCRIPTION
This manual page documents briefly the ick command. This manual page was originally written for the Debian GNU/Linux distribution (but may be used by others), because the original program did not have a manual page, and was then added back to the main distribution. Fuller doc- umentation is available via the command info ick (for the ick command itself; even fuller documentation is available via info C-INTERCAL (which contains the documentation for both the compiler and the INTERCAL language)). ick takes INTERCAL programs and generates code from them (by running gcc). Note that the base in which a program is written is deduced from its extension; INTERCAL programs in base 2 must have the extension .i, INTERCAL programs in bases from 3 to 7 must have an extension from .3i to .7i respectively. No options take arguments; multiple options can be given separately or combined in the usual way (even -e). The order in which options is given is irrelevant unless they conflict, in which case the options that are given last on the command line take precedence. OPTIONS
-c Compile INTERCAL to C, but don't compile the resulting C. -d Print yacc debugging information (implies -c). -t Requires strict INTERCAL-72 compliance (rejecting COME FROM, the extensions for bases other than two, and other features not found in INTERCAL-72). -b Disables the INTERCAL-72 random-bug feature. -O Attempt to optimize expressions in the generated code. -C Clockface output (using IIII rather than IV in Roman numerals). -f Optimize control flow in generated code (prevents -yp). -F Optimize everything in generated code for speed, regardless of how slow the compiler becomes or how large the object file becomes. Implies -fO, prevents -cdeghpyH. -h Print optimizer debugging information (implies -cO). -H Print verbose optimizer debugging information (implies -cO). -hH Print optimizer debugging information in a different form (implies -cO). -w Enable the +printflow option in output programs even if they are not multithreaded. -y Run the yuk debugger on the code (prevents -fme). -p Run the yuk profiler on the code (prevents -fme). -m Allow multithreading and backtracking (prevents -ype, implies -w). -e Link one INTERCAL file to non-INTERCAL files or to expansion libraries. Doing this changes the syntax of the command line; the first file given must be the INTERCAL source file, then this can be followed by any number of files in other languages to link via the external calls system (currently only C and maybe Befunge-98 programs are allowed), and then any number of expansion libraries. The non-INTERCAL files will be processed to link them to the INTERCAL files, and then compiled with gcc and linked to the main INTERCAL program. -E Do not link any system libraries, even if the code suggests that one or more is needed (prevents -P). -a Allow the use of the CREATE statement (prevents -P). -v Allow anything on the left of an assignment, and turn off the protection that constants otherwise have against being assigned to (prevents -fFOP). -P Compile PIC-INTERCAL rather than INTERCAL (prevents -amFvxeE, implies -cfO). -o Output to stdout rather than .c (implies -c). -X Interpret ambiguous syntax such as ? and @ with Princeton meanings (as used by CLC-INTERCAL), rather than with the default Atari meanings. -x Use CLC-INTERCAL rules for text I/O and for abstaining from a GIVE UP by label (prevents -P). -u Print a message whenever the compiler tries to open a file. -U Dump core on E778 as well as printing an error. -Y Display the command lines for programs invoked by ick. -g Leave the generated C in place, and make the output executable debuggable. -l Attempt to report likely bugs and nonportabilities (implies -O). SEE ALSO
The newsgroup alt.lang.intercal is where INTERCAL compilers are announced, and INTERCAL itself is discussed; the website http://catb.org/~esr/intercal is where the most recent versions of C-INTERCAL are currently hosted. AUTHOR
ick was originally written by Eric S. Raymond. This manual page was originally written by Mark W. Eichin <eichin@kitten.gen.ma.us>, for the Debian GNU/Linux system. ICK(1)
All times are GMT -4. The time now is 07:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy