Sponsored Content
Top Forums Shell Programming and Scripting pdf of Unix Shell proramming by Yashwant kanetkar needed Post 302121678 by smartguy_iliyas on Monday 18th of June 2007 01:19:36 AM
Old 06-18-2007
pdf of Unix Shell proramming by Yashwant kanetkar needed

Hi All,

im planning to scratch the shell prog.

Can anyone plz post me the pdf of Unix Shell proramming by Yashwant kanetkar.

Thx a lot in advance

by iliyas
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Is there any way to append pdf files in UNIX?

Is there any way to append pdf files in UNIX? I have a apllication which creates pdf files. Now i want to append them so that it gives me one pdf file. Is this possible? (2 Replies)
Discussion started by: cp7800
2 Replies

2. Programming

parallel port proramming for sun ultra

Hi I'm trying to look for information about reading/writing to the parallel port of a Sun Ultra 5 running Solaris 8. I'd just like to see some basic programs written in C, nothing fancy, just reading and wrting to the port, getting the port address etc. toggling the lines. I've tried searching... (2 Replies)
Discussion started by: fishman2001
2 Replies

3. UNIX for Dummies Questions & Answers

Writing to pdf in Unix?

Is there an easy way to print to a pdf file in Unix? Now I'm using lpr command to print to a network printer , but I need to have a pdf version of the file as well! Can someone help me? -Rune (2 Replies)
Discussion started by: runeho
2 Replies

4. UNIX for Dummies Questions & Answers

SA288-sun solaris for systemm admin8,part II pdf needed

Hi All, can any1 plz upload me the SA288-sun solaris for system admin8,part II pdf. I need to do the certification.................plz help me at the earliest Thanks to all (4 Replies)
Discussion started by: iliyas
4 Replies

5. UNIX for Advanced & Expert Users

How to modify an existing pdf with unix shell commands

Hi, I know that to create a pdf file I can use the txt2pdf command. But if I would change an existing pdf file, by inserting lines in particular positions of this file, what can I use? And How? (3 Replies)
Discussion started by: fandwick
3 Replies

6. Shell Programming and Scripting

Batch job in unix server to move the pdf file from unix to windows.

Hi Experts, I have a requirement where i need to setup a batch job which runs everymonth and move the pdf files from unix server to windows servers. Could some body provide the inputs for this. and also please provide the inputs on how to map the network dirve in the unix like that... (1 Reply)
Discussion started by: ger199901
1 Replies

7. Solaris

[ Help needed] - VxVM pdf required

Hi, I am looking for below PDF's Veritas Storage Foundation 5.1 for UNIX - Install and configure Veritas Storage Foundation 5.1 for UNIX - Manage and Adminstrator Could someone please provide a link. I would be highly thankful to you. Best Regards, (1 Reply)
Discussion started by: saurabh84g
1 Replies

8. Homework & Coursework Questions

Linux/UNIX Bash Shell Script trouble help needed!!

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 2. Shell Bash Script 3. !/bin/bash if echo no directory then mkdir -p /home/AC_Drywall elif ; then echo "$dir already exist" fi (4 Replies)
Discussion started by: TomFord1
4 Replies

9. Shell Programming and Scripting

UNIX shell scripting - help needed

Can anyone please help me to create the output file based on the attached input files using ksh script. I have 2 input files 1) inputfile1.txt 2) inputfile2.txt The script should accept 2 parametes: 1. Inputfile2.txt with 1-10,000 values ( sample file contains only 4 records) 2. Script... (5 Replies)
Discussion started by: vinus
5 Replies

10. Shell Programming and Scripting

Help Needed: UNIX shell variables to store Oracle table records

Hello Folks, I'm working on a requirement to automate the process of generating report(csv file) using metadata info stored in an Oracle table and E-mail it to respective people. Meta data table: Report_ID,Report_SUB_ID,Report_DB,Report_SQL,Report_to_email_Id 1,1,DEV,'select * From... (2 Replies)
Discussion started by: venkat_reddy
2 Replies
CC(1)							      General Commands Manual							     CC(1)

NAME
cc - C compiler SYNOPSIS
cc [-STOUfcimos] [-w[aos]] [-v[n]] [-Dname]* [-Idir]* [-Ldir]* file+ [-lname]* OPTIONS
-D The flag -Dx[=y] defines a macro x with (optional) value y -I -Idir searches dir for include files -L -Ldir searches dir for -lname libraries -O Optimize the code -S Produce an assembly code file, then stop -T The flag -Tdir tells cc and as to use dir for temporary files -U Undefine a macro -E Preprocess to standard output -c Compile only. Do not link -f Link with floating point emulation library -i Use separate I & D space (64K + 64K) ( only) -l The flag -lname causes the library libname.a to be linked -m Remove unnecessary prototypes after preprocessing ( only) -o Put output on file named by next arg -s Strip the symbol-table from executable file -v Verbose; print pass names -vn Verbose; print pass names but do not run them -w Suppress warning messages -ws Suppress strict messages -wa Suppress all warning and strict messages -wo Suppress messages about old-style -.o Do not link the default run-time start-off EXAMPLES
cc -c file.c # Compile file.c cc -DFOO file.c # Treat the symbol FOO as defined cc -wo -o out file.c # Compile old-style code; output to out DESCRIPTION
This is the C compiler. It has eight passes, as follows: Program Input Output Operation performed lib/ncpp prog.c prog.i C preprocessor: #include, #define, #ifdef lib/irrel prog.i prog.i Removal of unnecessary prototypes lib/ncem prog.i prog.k Parsing and semantic analysis lib/nopt prog.k prog.m Optimization of the intermediate code lib/ncg prog.m prog.s Code generation bin/as prog.s prog.o Assembly lib/ld prog.o prog.out Linking lib/cv prog.out a.outConversion to MINIX a.out format In the 68000 versions of MINIX , the preprocessor is not called since the front-end contains the preprocessor. This increases compilation speed. The main program, cc , forks appropriately to call the passes, transmitting flags and arguments. The -v flag causes the passes to be listed as they are called, and the -vn flag causes the passes to be listed but not called. The libraries should be made with aal (which is the same as ar on the 68000 versions), and consist of .o files. The internal order of files inside the library is unimportant, but the order in which the libraries are specified is. When -T is used, the intermediate files end up in the directory specified. Otherwise, /tmp is used. When available memory is very limited (e.g., a 512K machine), it may be necessary to run chmem to reduce the sizes of the compiler passes that do not fit, typically ncem . On the other hand, if the compiler (or, in fact, almost any program) begins acting strange, it is almost always due to its running out of space, either stack space or scratch file space. The relevant pass can be given more stack space using chmem . More space for scratch files can be obtained by removing other files on the device. If the compiler runs out of memory, it may be necessary to use the -m flag. This causes irrel to be run, which removes unnecessary proto- types and thus frees up extra table space within the compiler. Beware, however, that running this pass may cause strictly conforming pro- grams to become non-conforming and vice versa, so you should only run this pass as a last resort. The compiler is derived from the ACK system (Tanenbaum et al., Communications of the ACM, Sept. 1983), not from the AT&T portable C com- piler. It has been shoehorned onto the PC with some loss of performance. SEE ALSO
make(1). CC(1)
All times are GMT -4. The time now is 10:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy