7 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
I have an array code and output is below:
echo $1
while read -r fline; do
echo "%%%%%%$fline%%%%%"
fmy_array+=("$fline")
done <<< "$1"
Output:
CR30903 YU0007 SRIL CR30903 Yogesh SRIL
%%%%%%CR30903 YU0007 SRIL%%%%%
%%%%%%CR30903 Yogesh SRIL%%%%%
... (8 Replies)
Discussion started by: mohtashims
8 Replies
2. Red Hat
Hi,
I have 2 machines in production environment:
1. redhat machine for application
2. DB machine (oracle)
The application doing a lot of small read&writes from and to the DB machine.
The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies
3. Shell Programming and Scripting
Hi guys,
i want to know about network protocol testing.
1. What is network protocol testing?
2. Whats the role of network protocol tester?
3. Is there good future scope in network protocol testing field?
4. Just give me a example of protocol testing.
5. How it relates to perl or unix?
Thanks... (0 Replies)
Discussion started by: rangarasan
0 Replies
4. IP Networking
hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies
5. UNIX for Dummies Questions & Answers
Hi,
I am writing a BASH shell script. I have an array that will contain IN ANY ORDER the following elements: DAY 8D MO NS.
I would like to erase the element DAY, but since the order of the elements in the array are random, I will not know which element # DAY is (ie it's not as simple as... (3 Replies)
Discussion started by: msb65
3 Replies
6. Shell Programming and Scripting
I just want to be able to take every 6 value out of an arrays
can someone tell me what i'm doing wrong? the data looks like
1500680,Treverbyn,397,1,2136,4420 and i want the 2 element treverbyn out of every row
#hour0.pl
my $url = 'http://en19.tribalwars.net/map/tribe.txt';
use... (1 Reply)
Discussion started by: frenchface
1 Replies
7. Solaris
How do you test the physical network connection of an interface in solaris. I know that if you have an active connection and the cable gets yanked, you can look in the messages file to check for link failure messages. But is there any better way to see if you have good layer 2 connectivity? (1 Reply)
Discussion started by: tjlst15
1 Replies
ntohl(3) Library Functions Manual ntohl(3)
NAME
ntohl - Converts an unsigned 32-bit integer from Internet network byte order to host byte order
LIBRARY
Standard C Library (libc.so, libc.a)
SYNOPSIS
#include <arpa/inet.h>
in_addr_t ntohl ( in_addr_t netint) ;
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows:
ntohl(): XNS4.0
Refer to the standards(5) reference page for more information about industry standards and associated tags.
PARAMETERS
Specifies a 32-bit integer in network-byte order.
DESCRIPTION
The ntohl() (network-to-host long) function converts an unsigned 32-bit integer from Internet network-byte order to host-byte order.
The Internet network requires address and port reference data in network-byte order. You can use the ntohl() function to convert Internet
network address and port data to host byte-ordered integers.
RETURN VALUES
The ntohl() function returns a 32-bit integer in host-byte order.
ERRORS
Current industry standards do not define error values for the ntohl() function.
RELATED INFORMATION
Functions: endhostent(3), endservent(3), ntohs(3), htonl(3), htons(3).
Standards: standards(5).
Network Programmer's Guide delim off
ntohl(3)