Anyone like a challenge?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Anyone like a challenge?
# 15  
Old 02-12-2015
Bingo! Smilie

Where's the "gold star" smiley when you need one? Smilie


----
Regards,


Ian
# 16  
Old 02-12-2015
If your sysadmin has set things up like this for all users on your system, in my not so humble opinion, he or she should be fired. If you did this to yourself in one of your shell initialization files, you need to be very aware that lots of commands that work for everyone else will fail due to this unexpected behavior.

If you issue the command:
Code:
unalias ls

and then try the command I suggested earlier (with some adjustments for the age of a Solaris Release 9 system and the removal of the timestamp):
Code:
for lf in $(ls *.log.0??|tail -6);do printf '%s %s\n' "$lf" "$(tail -1 "$lf")" | awk '{$2=x}1';done

That should work on the HP/UX system. Change the awk to /usr/xpg4/bin/awk or nawk on the Solaris 9 system.

The tail -number is no longer listed in the standards, but is still accepted as a synonym for the today's standard's tail -nnumber preferred form on HP/UX and more recent Solaris releases.

All of this assumes that you're using ksh or bash on your Solaris system. The pure Bourne shell installed in /bin/sh on Solaris systems won't understand the $(command) form of command substitution.
# 17  
Old 02-12-2015
@Don shouldn't tail -6 be taken out? I think it was only used in post #1 to produce the listing, no?
This User Gave Thanks to Scrutinizer For This Post:
# 18  
Old 02-12-2015
Quote:
Originally Posted by Scrutinizer
@Don shouldn't tail -6 be taken out? I think it was only used in post #1 to produce the listing, no?
I picked up the tail -6 from BitterBits' post #1. If the intent is to process all files, neither tail nor ls are needed, just:
Code:
for lf in *.log.0??;do printf '%s %s\n' "$lf" "$(tail -1 "$lf")" | awk '{$2=x}1';done

on HP/UX systems or:
Code:
for lf in *.log.0??;do printf '%s %s\n' "$lf" "$(tail -1 "$lf")" | nawk '{$2=x}1';done

on Solaris systems.
These 3 Users Gave Thanks to Don Cragun For This Post:
# 19  
Old 02-14-2015
Quote:
Originally Posted by BatterBits
Bingo! Smilie

Where's the "gold star" smiley when you need one? Smilie


----
Regards,


Ian
Hi Ian,
You can award a gold star (or at least note your thanks) by clicking the "Thumbs Up Thanks" button at the bottom left of any post that you did not submit and that you have not already thanked.

It looks like you have done this two times already (and it is appreciated).

Cheers,
Don
This User Gave Thanks to Don Cragun For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Touch Challenge

I've been given a directory full of subdirectories full of logfiles of the same name: /logfiles/day1/file1/blockednodes.csv day1-14 file1-48 The above is the actual directory structure for 14 days worth of a logfile that is generated every 30 minutes. It's been done this way to preserve the... (15 Replies)
Discussion started by: Cludgie
15 Replies

2. AIX

openssh connectivity challenge

Running a Power 5 Blade on AIX, with remote connectivity issues via putty. AIX V 6.1.00-02 openssh V5.2.0.5300 openssl V0.9.8.1103 Intermittent remote connections. Seems to connect every other time I try via my putty client. Using hosts.allow and hosts.deny to filter IP Addrss... (2 Replies)
Discussion started by: FrankM
2 Replies

3. Shell Programming and Scripting

PS1 challenge

Ok then i Have a challenge for you : Give me PS1 so that it always display the least 2 levels of directory (except if i am above of course) I want it this way : so if i go to / /home/ /home/user /home/user/whatever /home/user/whatever1/whatever2 my PS1 should respectively... (12 Replies)
Discussion started by: ctsgnb
12 Replies

4. Shell Programming and Scripting

Geo Weather Challenge

Hi everybody, I'm new to these forums and this is my first post. A couple days ago I was trying to find a simple script that would return an individual's local weather conditions using I.P. based geolocation. After many failed search attempts, I began my quest to create this for myself. I have to... (0 Replies)
Discussion started by: o0110o
0 Replies

5. Shell Programming and Scripting

regex challenge

Here's a regex substitution operation that has stumped me with sed: How do you convert lines like this: first.key ?{x.y.z} second.key ?{xa.ys.zz.s} third.key ?{xa.k} to: first.key ?{x_y_z} second.key ?{xa_ys_zz_s} third.key ?{xa_k} So i'm basically converting all the... (11 Replies)
Discussion started by: neked
11 Replies

6. Shell Programming and Scripting

sed xml challenge

I have a web xml file that looks like this: <allinfo> <info> <a>Name1<\a> <b>address1<\b> <c>phone1<c> <\info> <info> <a>Name2<\a> <b>address2<\b> <c>phone2<c> <\info> <\allinfo> I want to use sed to... (2 Replies)
Discussion started by: katrvu
2 Replies

7. Shell Programming and Scripting

sed replacement, challenge one!!!!

Hi all, Thanks in advanced. This question really bothered me much. What i want is to replace any times of repeated 'TB' to 'T', below is example. It can be fullfil by AWK and perl, but my desire is using SED to realize it. So here means we treat TB as a whole part, which means 's/TB*/T/'... (4 Replies)
Discussion started by: summer_cherry
4 Replies

8. Shell Programming and Scripting

AWK Challenge

I have the following text Microsoft iSCSI Initiator version 2.0 Build 3497 Targets List: iqn.2001-05.com.equallogic:0-8a0906-daef43402-138000002a4477ba-grsrv12-extra iqn.2001-05.com.equallogic:0-8a0906-986f43402-520000002b447951-exchange ... (9 Replies)
Discussion started by: netmedic
9 Replies

9. UNIX for Advanced & Expert Users

safeword challenge

Hi, there are some servers here at work which issue a Safeword challenge after I login. Can anyone tell me exactly how the challenge/response system works? In particular, how are the valid keys decided? (2 Replies)
Discussion started by: blowtorch
2 Replies

10. UNIX for Advanced & Expert Users

X25 Address - A challenge...

Okay - I've been searching near and far for the answer to this seemly simple question..... how do I find the X25 address for a server. Is there some sort of dump or ping or even a config which would tell me the address. I can find nothing on the web and my colleagues can't help either. (1 Reply)
Discussion started by: peter.herlihy
1 Replies
Login or Register to Ask a Question