Sponsored Content
Full Discussion: perl line needing a tweak
Top Forums Shell Programming and Scripting perl line needing a tweak Post 302649651 by richsark on Thursday 31st of May 2012 11:16:56 PM
Old 06-01-2012
Hey, Thanks for that, I just ran it...

I cant seem to understand why the below does not come out in the routine. This is just one I hand picked. Not sure if there are more
Code:
hostrecord,rich.sark.com,,10.8.2.1,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.8.2.1,,rich.sark.com,,,,False,,,,,,,,,,,,default

Here is a small excerpt
Code:
hostrecord,acf0535r01.homeoffice.anfcorp.com,,10.8.202.10,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.8.202.10,,acf0535r01.homeoffice.anfcorp.com,,,,False,,,,,,,,,,,,default
hostrecord,acf0535r02.homeoffice.anfcorp.com,,10.8.202.11,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.8.202.11,,acf0535r02.homeoffice.anfcorp.com,,,,False,,,,,,,,,,,,default
hostrecord,acf0535r03.homeoffice.anfcorp.com,,10.8.202.12,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.8.202.12,,acf0535r03.homeoffice.anfcorp.com,,,,False,,,,,,,,,,,,default
hostrecord,acf0535r04.homeoffice.anfcorp.com,,10.8.202.13,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.8.202.13,,acf0535r04.homeoffice.anfcorp.com,,,,False,,,,,,,,,,,,default
hostaddress,10.11.18.3,,a10792-prnt01.stores.anfcorp.com,,,,False,,,,,,,,,,,,default
hostrecord,a10793-prnt01.stores.anfcorp.com,,10.10.133.131,,,,,,,True,,False,,,,,,,,,,,,,default
hostaddress,10.9.22.55,,a10935-prnt01.stores.anfcorp.com,,,,False,,,,,,,,,,,,default
hostrecord,a10935-prnt02.stores.anfcorp.com,,10.1.96.24,,,,,,,True,,False,,,,,,,,,,,,,default


Last edited by Franklin52; 06-01-2012 at 03:41 AM.. Reason: Please use code tags for data and code samples
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Needing a line feed for windows app

I wrote a program to format data with awk. This file will goto a windows machine and loaded into a windows app. The vendor said adding a line feed would help, but it would work as is. I am already doing a /n, will putting on the /r give the windows person what he wants. Thanks. (5 Replies)
Discussion started by: benefactr
5 Replies

2. UNIX for Dummies Questions & Answers

Intern needing to convert bash to perl.

Hello All. I am very new to Linux and I am currently interning. I have been working on a project for a week and I have had no success. I have to convert bash shell into perl to decrypt and store files. Here is the code in Linux and Bash. Any help would be greatly appreciated. $... (0 Replies)
Discussion started by: freak
0 Replies

3. Shell Programming and Scripting

How to tweak up

I have a script like this: while read abbrev; do sed 's/'$(echo "$abbrev" | tr "" "")'/'"$abbrev"'/g' 'output_rgt.'$$ >'tmp.'$$ mv 'tmp.'$$ 'output_rgt.'$$ done<'dict.shortcuts.'$$ And I don't know how to leave "mv" out. ('dict.shortcuts.'$$ may be... (14 Replies)
Discussion started by: MartyIX
14 Replies

4. Shell Programming and Scripting

Needing to wait for a line on screen and then give input repeatedly

So I have a weird question for my unix shell script. I wrote a shell script that does several things, but one of the things it does is call an executable. The executable then proceeds to start asking me questions, which it won't proceed until an input is entered. The answer to the questions is... (4 Replies)
Discussion started by: HelpMeProgram
4 Replies

5. Shell Programming and Scripting

SED script needs tweak

I have a SED script that has worked for years, but broke today due to a new variable in a remote file. This is the part of the script that now won't work: sed "s|/directory/overview.gif|/directory/img/overview2.gif|g" | \ The path /directory/overview.gif is no longer static as it had been... (2 Replies)
Discussion started by: dockline
2 Replies

6. Shell Programming and Scripting

Perl find command tweak

i use the following command to find files that were recently updated within the last hour: perl -MFile::Find -le' find { wanted => sub { -f and 3600 / 86400 >= -M and print $File::Find::name; } }, shift' /var/app/mydata/ this command works well. however, it seems to also search directories... (1 Reply)
Discussion started by: SkySmart
1 Replies

7. UNIX for Beginners Questions & Answers

Tar.gz help - Need to tweak

Hi Guys - I need help tweaking my tar.gz process. Currently, I compress all files in a directory, in which the parent directory is included in that. I only want to compress the "*.txt" files in the follow process: tar -zcvf ${_ESSB_TAR_PATH}/Essbase_Exports_${_DATETIMESTAMP}.tar.gz -C /... (3 Replies)
Discussion started by: SIMMS7400
3 Replies
XtSetSensitive(3)						   XT FUNCTIONS 						 XtSetSensitive(3)

NAME
XtSetSensitive, XtIsSensitive - set and check a widget's sensitivity state SYNTAX
void XtSetSensitive(Widget w, Boolean sensitive); Boolean XtIsSensitive(Widget w); ARGUMENTS
sensitive Specifies a Boolean value that indicates whether the widget should receive keyboard and pointer events. w Specifies the widget. DESCRIPTION
The XtSetSensitive function first calls XtSetValues on the current widget with an argument list specifying that the sensitive field should change to the new value. It then recursively propagates the new value down the managed children tree by calling XtSetValues on each child to set the ancestor_sensitive to the new value if the new values for sensitive and the child's ancestor_sensitive are not the same. XtSetSensitive calls XtSetValues to change sensitive and ancestor_sensitive. Therefore, when one of these changes, the widget's set_values procedure should take whatever display actions are needed (for example, greying out or stippling the widget). XtSetSensitive maintains the invariant that if parent has either sensitive or ancestor_sensitive False, then all children have ances- tor_sensitive False. The XtIsSensitive function returns True or False to indicate whether or not user input events are being dispatched. If both core.sensitive and core.ancestor_sensitive are True, XtIsSensitive returns True; otherwise, it returns False. SEE ALSO
X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 libXt 1.0.7 XtSetSensitive(3)
All times are GMT -4. The time now is 06:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy