Sponsored Content
Top Forums Shell Programming and Scripting Help with shell script filtering IPs Post 302907525 by accolito on Sunday 29th of June 2014 10:45:09 AM
Old 06-29-2014
Quote:
Originally Posted by Scrutinizer
Can you provide examples of valid entries that are removed?
Found a couple of lines that has been removed:

38.101.48.170 TEXT HERE:38.101.48.0-38.101.48.255
Erie Eoege e Eeeel:146.20.0.0-146.20.255.255
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issues with filtering duplicate records using gawk script

Hi All, I have huge trade file with milions of trades.I need to remove duplicate records (e.g I have following records) 30/10/2009,trdeId1,..,.. 26/10/2009.tradeId1,..,..,, 30/10/2009,tradeId2,.. In the above case i need to filter duplicate recods and I should get following output.... (2 Replies)
Discussion started by: nmumbarkar
2 Replies

2. Shell Programming and Scripting

Shell script to ping a range of IPs

Hi Can someone give me a shell script that can ping a range of IPs and return IPs which are not pingable. Range for example say 192.168.0.1 to 192.168.0.50 and whichever are not pingable then return the IP. Thanks for your help (3 Replies)
Discussion started by: tannu
3 Replies

3. UNIX for Dummies Questions & Answers

Filtering using Shell Script

Hello, I am writing a small script which I want to get the values from several files and output the hits result, i.e. week1.hits includes the following, Mon Feb 4 22:02:35 GMT 2008 Tue Feb 5 23:22:12 GMT 2008 Sat Feb 9 01:56:16 GMT 2008 A sample of my script is this, #!/bin/bash ... (0 Replies)
Discussion started by: nitrous642
0 Replies

4. Programming

need help with shell script filtering files and sort! newbie question?

Hi folks, I would like to get familiar with shell script programing. The first task is: write a shell script that: scans your home-folder + sub-directory for all txt-files that all users of your group are allowed to read and write then output these files sorted by date of last... (4 Replies)
Discussion started by: rollinator
4 Replies

5. Shell Programming and Scripting

script for automatic table filtering

Hello everyone! i I'm trying to write a script that can filter data in a text file. the source file looks like this the result file should look like this As you can see mostly i need to delete fields like _219402757693 and date - time 12.07.2012 8:49:06 i know that it's possible to... (0 Replies)
Discussion started by: o28
0 Replies

6. Shell Programming and Scripting

Need help for filtering a file through awk script

Hello Folks, I am working on filtering a file having some special characters. Let's say for an example a file contains person name and phone number based on positions. First 5 characters name and next 10 characters phone number. My task is to , if there is any special character in phone number... (6 Replies)
Discussion started by: dinesh1985
6 Replies

7. Shell Programming and Scripting

Need help with a script to track IPs

Please tell me the script, if any user ping my pc so leave his ip, mac and other identity on my pc. (1 Reply)
Discussion started by: abhihot95
1 Replies

8. Shell Programming and Scripting

Help with shell script - filter txt file full of ips

Hello again gentlemen. I would like to make a shell script to 'optimize' a plain text full of IPs. Let's suppose to have this text file: 1.192.63.253-1.192.63.253 1.0.234.46/32 1.1.128.0/17 1.116.0.0/14 1.177.1.157-1.177.1.157 1.23.22.19 1.192.61.0-1.192.61.99 8.6.6.6 I want to... (2 Replies)
Discussion started by: accolito
2 Replies

9. Shell Programming and Scripting

Shell script filtering

Hi, I have a file contains log information per line: user=test1 group=test1 ctime=1411615875 qtime=1411615875 etime=1411615875 start=1411615876 resources_used.mem=390792kb resources_used.vmem=8844720kb resources_used.walltime=8 How can extract only user=test1 and resources_used.walltime=8: ... (2 Replies)
Discussion started by: hce
2 Replies

10. Solaris

IPS postinstall script

Hi guys, I'm creating custom package for deploying a bunch of public keys for some root servers we have. I have created script and it works but my problem is how to call this script when I want deploy package with puppet on server? Oracle documentation provided only example for first boot script... (0 Replies)
Discussion started by: solaris_user
0 Replies
mlib_ImageColorDitherInit(3MLIB)			    mediaLib Library Functions				  mlib_ImageColorDitherInit(3MLIB)

NAME
mlib_ImageColorDitherInit - initialization for image dithering SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> mlib_status mlib_ImageColorDitherInit(void **colormap, const mlib_s32 *dimensions, mlib_type intype, mlib_type outtype, mlib_s32 channels, mlib_s32 entries, mlib_s32 offset, void **lut); DESCRIPTION
The mlib_ImageColorDitherInit() function creates an internal data structure, colormap, which can be used by one of the following functions for image dithering: mlib_ImageColorErrorDiffusion3x3 mlib_ImageColorErrorDiffusionMxN mlib_ImageColorOrderedDither8x8 mlib_ImageColorOrderedDitherMxN The lut might have either 1 or 3 channels. The type of the lut can be one of the following: MLIB_BYTE in, MLIB_BYTE out (i.e., BYTE-to-BYTE) MLIB_BIT in, MLIB_BYTE out (i.e., BIT-to-BYTE) If dimensions == NULL, then no colorcube will be created. In this case, the user-provided lookup table, lut, will be used for dithering. If dimensions != NULL, then a colorcube is created from scratch in a way shown in the following example. To dither an RGB image of type MLIB_BYTE to a color-indexed image of type MLIB_BYTE, we can use the following parameters: mlib_s32 dimensions[] = {2, 3, 4}; mlib_type intype = MLIB_BYTE; mlib_type outtype = MLIB_BYTE; mlib_s32 channels = 3; mlib_s32 offset = 6; These values would lead to the creation of a colorcube that would dither red values in the source image to one of 2 red levels, green val- ues to one of 3 green levels, and blue values to one of 4 blue levels. You could picture this colorcube as a cube with dimensions of 2, 3, and 4. The index values assigned to the elements in that cube can be described by the following lookup table: | | | Indexes | Red Values | Green Values | Blue Values ---------------+----------------+----------------+--------------- 0 | | | ---------------+----------------+----------------+--------------- ... | | | ---------------+----------------+----------------+--------------- 5 | | | ---------------+----------------+----------------+--------------- 6 | 0 | 0 |0 ---------------+----------------+----------------+--------------- 7 | 255 | 0 |0 ---------------+----------------+----------------+--------------- 8 | 0 | 128 |0 ---------------+----------------+----------------+--------------- 9 | 255 | 128 |0 ---------------+----------------+----------------+--------------- 10 | 0 | 255 |0 ---------------+----------------+----------------+--------------- 11 | 255 | 255 |0 ---------------+----------------+----------------+--------------- 12 | 0 | 0 |85 ---------------+----------------+----------------+--------------- 13 | 255 | 0 |85 ---------------+----------------+----------------+--------------- 14 | 0 | 128 |85 ---------------+----------------+----------------+--------------- 15 | 255 | 128 |85 ---------------+----------------+----------------+--------------- 16 | 0 | 255 |85 ---------------+----------------+----------------+--------------- 17 | 255 | 255 |85 ---------------+----------------+----------------+--------------- 18 | 0 | 0 |170 ---------------+----------------+----------------+--------------- 19 | 255 | 0 |170 ---------------+----------------+----------------+--------------- 20 | 0 | 128 |170 ---------------+----------------+----------------+--------------- 21 | 255 | 128 |170 ---------------+----------------+----------------+--------------- 22 | 0 | 255 |170 ---------------+----------------+----------------+--------------- 23 | 255 | 255 |170 ---------------+----------------+----------------+--------------- 24 | 0 | 0 |255 ---------------+----------------+----------------+--------------- 25 | 255 | 0 |255 ---------------+----------------+----------------+--------------- 26 | 0 | 128 |255 ---------------+----------------+----------------+--------------- 27 | 255 | 128 |255 ---------------+----------------+----------------+--------------- 28 | 0 | 255 |255 ---------------+----------------+----------------+--------------- 29 | 255 | 255 |255 ---------------+----------------+----------------+--------------- ... | | | The distance between level changes in each channel of the lookup table is determined by the following formulas: multipliers[0] = signof(dimensions[0])*1; multipliers[i] = signof(dimensions[i])* abs(multipliers[i-1]*dimension[i-1]); A negative dimensions[i], so as to a negative multipliers[i], indicates that the values in a color ramp for channel i should appear in decreasing as opposed to increasing order. For each channel i, the values of the levels are determined by the following formulas: double delta = (dataMax - dataMin)/(abs(dimensions[i]) - 1); int levels[j] = (int)(j*delta + 0.5); where dataMax and dataMin are the maximum and minimum values, respectively, for data type intype. Whenever a colorcube is created, if lut != NULL, the lookup table will be filled according to the colorcube and supplied parameters like offset. For the example shown above, the lookup table will start from line 6. In this case, it is the user's responsibility to allocate memory for the lookup table. PARAMETERS
The function takes the following arguments: colormap Internal data structure for image dithering. dimensions Dimensions of the colorcube in the colormap structure. intype Data type of the source image and the lookup table. outtype Data type of the destination indexed image. channels Number of channels of the lookup table and source image. entries Number of entries of the lookup table. offset Index offset of the lookup table. lut Lookup table. RETURN VALUES
The function returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
mlib_ImageColorDitherFree(3MLIB), mlib_ImageColorErrorDiffusion3x3(3MLIB), mlib_ImageColorErrorDiffusionMxN(3MLIB), mlib_ImageColorOrdered- Dither8x8(3MLIB), mlib_ImageColorOrderedDitherMxN(3MLIB), attributes(5) SunOS 5.11 2 Mar 2007 mlib_ImageColorDitherInit(3MLIB)
All times are GMT -4. The time now is 05:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy