comprehensive guide for shell scripting programming


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers comprehensive guide for shell scripting programming
# 1  
Old 06-16-2002
comprehensive guide for shell scripting programming

Dear all

Any recommendation for this, web-site or publisher?
# 2  
Old 06-16-2002
I Strongly suggest this site. Contents shell book recommendation, news, script archive and examples Also many more. give a try

http://www.shelldorado.com/links/
# 3  
Old 06-17-2002
Thank you!!!
Really a good web-site
# 4  
Old 06-17-2002
programming sites

Here are some good links also. There are some shell programming links in each of these posts.

https://www.unix.com/showthread.php?s...ht=programming

https://www.unix.com/showthread.php?s...highlight=link


Read my post at the bottom of this link.

https://www.unix.com/showthread.php?s...highlight=link


"The AWK Programming Language", by Aho Kernigan & Weinberger
ISBN 0-201-07981-X

"Sed/Awk" by O'Reilly & Assoc.

Also, UNIX Shell Programming & Kornshell Programming, not sure of the author.



Not for programming, but this next book is a MUST HAVE!!!!!!!!! Smilie
Sometimes referred to as "The Red Book". I think it is now a 3rd edition.

"Unix System Adminstration Handbook" by Nemeth, Snyder, Seebass, Hein


ENJOY!!!Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Shell script to read lines in a text file and filter user data Shell Programming and Scripting

sxsaaas (3 Replies)
Discussion started by: VikrantD
3 Replies

2. Shell Programming and Scripting

shell programming and scripting

I was trying out some new series to get it print 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 and the seond one is 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 but was unable to get the result. (5 Replies)
Discussion started by: harjinder
5 Replies

3. Shell Programming and Scripting

Shell Programming and Scripting

Hi All, How do I code a password with multiple special characters in it. Example: password is P#utar&@ None of the belwo options worked 1. passwd="P#utar&@" 2. passwd='P#utar&@' Any help will be greatly appreciated. (3 Replies)
Discussion started by: afredri
3 Replies

4. Infrastructure Monitoring

Shell Programming and Scripting

# set date to your spec: this is month/day/yr/hr/min/sec: sysdate=`date '+%m/%d/%Y-%H:%M:%S'` # get the last line before the history file is modified tail -1 /tmp/hosthistory.txt |while read lastdate mydevices do echo $lastdate echo $mydevices done LIST = 'ypcat hosts|| sort... (11 Replies)
Discussion started by: lemseffert
11 Replies

5. Shell Programming and Scripting

Shell Programming and Scripting

Hi, Iam having the files as follows: file1 aa aa aa aa ab ac ad ae file2 aa aa ab Outputfile: (20 Replies)
Discussion started by: nivas
20 Replies

6. Shell Programming and Scripting

Shell Programming and Scripting

Hi, Iam having file1 as follows: ERTYUIOU|1234567689089767688 FDHJHKJH|6817738971783893499 JFKDKLLUI|9080986766433498444 FILE2 ERTYUIOU|1234567689089767688 resh@abc_com 767637218328322332 893589893499 asdsddssd ... (21 Replies)
Discussion started by: nivas
21 Replies

7. Shell Programming and Scripting

Shell Programming and Scripting

Hi, iam having the file as follows: ABCDEFGH|0987654321234567 ABCDEFGH|0987654321234523 ABCDEFGH|0987654321234556 ABCDEFGH|0987654321234545 POIUYTRE|1234567890890678 POIUYTRE|1209867757352567 POIUYTRE|5463879088797131 POIUYTRE|5468980091344456 pls provide me the split command ... (14 Replies)
Discussion started by: nivas
14 Replies

8. Shell Programming and Scripting

Shell Programming and Scripting

Hi Iam using grep command as follows in my script read_file1() { cat file1.txt | while read line do grep $line file2.txt >> out.txt done } read_file1 This way the performance is very slow. We are having lacks of records in file1 and file2 how can i improve the... (3 Replies)
Discussion started by: nivas
3 Replies
Login or Register to Ask a Question