My simple understanding of NAT is something like this could happen:
Two client PCs 192.168.1.2 and 192.168.1.3 open up a connection with src port = 12345.
I have a file which has numbers at the start of some of the lines.
Code:
aaa
aaa
1 aaa bbb ccc ddd 12345 12345
2 aaa bbb ccc ddd 12345 12345
3 aaa bbb ccc ddd 12345 12345
4 aaa bbb ccc ddd 12345 12345
bbb
5 aaa bbb ccc d
uploaded "[[File:12345.JPG]]"
New page
Hello,
I have two source files:
sourcefile1.dat:
Code:
12345 xxx yyy zzz
23456 qqq ttt rrr
34567 ppp jjj ggg
45678 fff ddd sss
56789 nnn mmm ccc
sourcefile2.dat:
Code:
12345.gif
34567.gif
I want to obtain a simple awk one linger to obtain the following:
Code:
xxx yyy zzz 12345.gif
qqq ttt rrr none.gif
ppp jjj ggg 34567.gif
fff ddd sss none.gif
nnn mmm ccc none.gif
Hi All,
I have a file like this
red 12345
12345 abc red
ddd red dfgd
abc blue 123
123 red123
123red123
I need to comment all lines from this file containing the string 'red'. Desired output.
#red 12345
#12345 abc red
#ddd red dfgd
abc blue 123
#123 red123
#123red123
How to achive this in Unix??
Thanks,
sarin
I intalled opendkim with sendmanil (on Ubuntu) without any problem, and followed the same procedure for installing on another server (Debian with postfix), but it does not work. Strangely, there is no error in the log files too.
I have two data sets, A and B. The format for each data set is one number per line. For instance,
12345
23456
67891
2345900
12345
Some of the data in A are not included in data set B. How to list all of these data in A, and how to list all of those data shared by A and B. How can I do that using Linux/UNIX commands?
I need to build the following command in linux using ProcessBuilder:
sudo packit -t UDP -S 1000 -D 1200 -s 127.0.0.1 -d 192.168.1.1 -c 5 -n 12345 -p '0x 80 64 45 78 00 00 27'
I tried with the following code:
commands.add("sudo"); commands.add("packit");
commands.add("-t"); commands.add("UDP");
commands.add("-S"); commands.add("1000");
commands.add("-D"); commands.add("1200");
commands.add("-s"
Hello All,
I'm in the middle of a script and I'm doing some checks with REGEX (i.e. using the '[[' ).
I'm wondering if this example is correct or if its just a coincidence.