Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #20.4K

8 Posted Topics

Member Avatar for budest

What you need first is to obtain a airwave analyzer application. It is not as scary as it sounds... something like AirSnort or NetStumbler for Windows will probably do (disclaimer: I run Linux and has never tried either application). Find out what channels all the neighboring access points (that would …

Member Avatar for barryt
0
456
Member Avatar for Artemis

I have implemented some SOAP/XML solutions at my last job, and we used a combination of layer 3+4 ilter (iptables), SSL, and authentication (login). I am not sure what you mean by SOAP firewall and validation... do you mean something that resides on server side that will validate the XML, …

Member Avatar for brutus9448
0
162
Member Avatar for jorritgoddijn

I would use a combination of grep and sed to do this... use grep for the pattern matching, and use sed to do the inline text editing. Do you have to do this with just shell script? Personally, I find it a lot easier to tackle this type of problem …

Member Avatar for thekashyap
0
84
Member Avatar for jbennet

Maybe this will fit your needs better: [url]http://wiki.debian.org/DebianInstaller[/url] Personally I have not done it with Debian-based distro yet, but I've had experience using RPM-based distros, and I got to a point where I can just pop in the CD, reboot, and it will go out on the network, find the …

Member Avatar for jbennet
0
216
Member Avatar for santhosheph

Here's a quick one to get you started: [CODE]#!/bin/bash rsync -aze ssh username@server:/path/on/remote/box /local/path 2> /home/err.log if [ -s /home/err.log ] ; then # file is not empty, some error has occured, do your email here echo "error occured!" ; else echo "no error occured, everything went fine!" ; fi[/CODE] …

Member Avatar for rggjan
0
367
Member Avatar for laddu

Here's a quick script that will read the input from STDIN (<>) and chop everything by spaces, and construct a 2D matrix (2 dimensional array) out of it. Say, your input is something that looks like the output of the command [inlinecode][B]ps aux[/B][/inlinecode], then you can use this script to …

Member Avatar for kuom
0
160
Member Avatar for Mushy-pea

If your needs are more complicated, you can use fancier tools like perl or python, or if your needs are fairly simple, sed will probably fit your needs just fine. Take your example, you have a file "input.txt" with the text you posted, and you want to strip of it …

Member Avatar for kuom
0
124
Member Avatar for varundba

First of all, you need to find the oldest file in the folder, you can do it with some switches in 'ls': [code] ls -t[/code] This will list the files and sort by time, the newest first, then the oldest. Not put it in reverse: [code]ls -tr[/code] It will list …

Member Avatar for kuom
0
131

The End.