Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

index(8) [plan9 man page]

0intro	0intro	intro  0intro  auth auth auth.srv auth changeuser
auth convkeys auth guard.srv auth printnetkey  auth  status  auth
wrkey  auth  b.com  b.com  boot  boot booting booting bootp bootp
rarpd bootp tftpd bootp btrace btrace cpurc  cpurc  termrc  cpurc
cron  cron  dkconfig  dkconfig	exsort fs fs fs fsconfig fsconfig
40meg home 80meg home Disclabel home home home	personalize  home
update home echo httpd httpd httpd init init arpd ipconfig ipcon-
fig ipconfig rip ipconfig kfscmd kfscmd ksync kfscmd dkcpu listen
dkcpunote  listen  dkdcon  listen  dkdiscard listen dkecho listen
dkexportfs listen dkguard listen dklogin listen dkrexexec  listen
dksmtp	listen	dkticket  listen  dkwhoami  listen il17005 listen
il17006 listen il17007 listen il17009 listen il565  listen  il566
listen	il7  listen il9 listen listen listen tcp17007 listen tcp2
listen tcp21 listen  tcp23  listen  tcp25  listen  tcp513  listen
tcp515	listen	tcp564 listen tcp565 listen tcp566 listen tcp6000
listen tcp7 listen tcp80 listen tcp9 listen lp lp mkext mkfs mkfs
mkfs  aux/mouse mouse mouse mouse cs ndb csquery ndb dns ndb dns-
query ndb mkdb ndb mkhash ndb ndb ndb query ndb  newuser  newuser
9auth  nfsserver  nfsserver nfsserver pcnfsd nfsserver portmapper
nfsserver aux/pcmcia  pcmcia  pcmcia  pcmcia  pip  pip	plan9.ini
plan9.ini  format prep prep prep qer qer runq qer scuzz scuzz se-
curenet securenet snoopy snoopy swap  swap  stats  sysmon  sysmon
sysmon vga vga

Check Out this Related Man Page

explain_listen_or_die(3)				     Library Functions Manual					  explain_listen_or_die(3)

NAME
explain_listen_or_die - listen for connections on a socket and report errors SYNOPSIS
#include <libexplain/listen.h> void explain_listen_or_die(int fildes, int backlog); DESCRIPTION
The explain_listen_or_die function is used to call the listen(2) system call. On failure an explanation will be printed to stderr, obtained from explain_listen(3), and then the process terminates by calling exit(EXIT_FAILURE). This function is intended to be used in a fashion similar to the following example: explain_listen_or_die(fildes, backlog); fildes The fildes, exactly as to be passed to the listen(2) system call. backlog The backlog, exactly as to be passed to the listen(2) system call. Returns: This function only returns on success. On failure, prints an explanation and exits. SEE ALSO
listen(2) listen for connections on a socket explain_listen(3) explain listen(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_listen_or_die(3)
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

please help with openbsd 2.9

Please help. I have downloaded the openbsd 2.9 snapshot from ftp.openbsd.org. the following files were downloaded from the snapshot dir. ( the whole dir. was downloaded ) base29,bsd,bsd.rd,cdrom29.fs,cksum,comp29,etc29,all three floppy images,game29,index,install.ata,install.chs... (11 Replies)
Discussion started by: Blunt_Killer
11 Replies

2. Shell Programming and Scripting

PHP: problem with index.php

iam geting a error with this index script. heres the error Parse error: parse error in c:\phpdev\www\dev\compulearn\in work\index.php on line 39 Whats wrong?? ------------------------ <?php //display header and left bars include ('header.php'); include ('left.php'); //connect... (13 Replies)
Discussion started by: perleo
13 Replies

3. Shell Programming and Scripting

Indexing or Filtering code- Pattern Search by comparing two files

So here is goes to the Gurus of shell programming......I have tried a lot of different ways and its a very challenging code to write but i am enjoying it as i troubleshoot and hopefully someone can provide me a better option....Thank you in advance for your time and support....Much appreciated... ... (12 Replies)
Discussion started by: aavam
12 Replies

4. Shell Programming and Scripting

How to access the elements of two arrays with a single loop using the inbuilt index.

Hi all, I wanted to access two arrays (of same size) using one for loop. Ex: #!/bin/bash declare -a num declare -a words num=(1 2 3 4 5 6 7) words=(one two three four five six seven) for num in ${num} do echo ":$num: :${words}:" done Required Output: :1: :one: (11 Replies)
Discussion started by: 14341
11 Replies

5. Shell Programming and Scripting

awk: reading into an array and then print the value corresponding to index

I am beginner in awk awk 'BEGIN{for(i=1;(getline<"opnoise")>0;i++) arr=$1}{print arr}' In the above script, opnoise is a file, I am reading it into an array and then printing the value corresponding to index 20. Well this is not my real objective, but I have posted this example to describe... (19 Replies)
Discussion started by: akshaykr2
19 Replies

6. Shell Programming and Scripting

rm -i and deleting files from an index table

Hi, I am trying to make a command to delete my files out the trash can, but one at a time. I am currently using rm - i to do this, but the original file locations for restoring my files are heard on a .txt file which I am using as an index table. How would I manage to make it so that if I... (21 Replies)
Discussion started by: E-WAN
21 Replies

7. Shell Programming and Scripting

BASH - storing index value from another file

I'm trying to figure out a way to store the index value from a flat file. The flat file looks like this: A1,A2,A4,A6,B3,B6,B7,C1,C2,C5,C7,D2,D5,D7,E2,E3,E4,F1,F5,F6,G2,G5 What I'm trying to achieve is to grab individual index value so as to display it out in a 7x7 matrix with ROW and COL... (21 Replies)
Discussion started by: vinzping
21 Replies

8. Shell Programming and Scripting

awk uniq and longest string of a column as index

I met a challenge to filter ~70 millions of sequence rows and I want using awk with conditions: 1) longest string of each pattern in column 2, ignore any sub-string, as the index; 2) all the unique patterns after 1); 3) print the whole row; input: 1 ABCDEFGHI longest_sequence1 2 ABCDEFGH... (12 Replies)
Discussion started by: yifangt
12 Replies

9. UNIX for Dummies Questions & Answers

awk: syntax for "if (array doesn't contain a particular index)"

Hi! Let's say I would like to convert "1", "2", "3" to "a", "b", "c" respectively. But if a record contains other number then return "X". input: 1 2 3 4 output: a b c X What is the syntax for: if(array doesn't contain a particular index){ then print the value "X" instead} (12 Replies)
Discussion started by: beca123456
12 Replies

10. Shell Programming and Scripting

Count lines

Hello, I have a file with two columns like the following FILE1: chr1 61042 chr1 61153 chr1 61446 chr1 61457 chr1 61621 chr10 61646 chr10 61914 chr10 62024 chr10 62782 Alos, I have another file FILE2: (13 Replies)
Discussion started by: rkk
13 Replies

11. Shell Programming and Scripting

awk : search last index in specific column

I am trying to search a given text in a file and find its last occurrence index. The task is to append the searched index in the same file but in a separate column. I am able to accomplish the task partially and looking for a solution. Following is the detailed description: names_file.txt ... (17 Replies)
Discussion started by: tarun.trehan
17 Replies

12. Shell Programming and Scripting

Associative array index question

I am trying to assign indexes to an associative array in a for loop but I have to use an eval command to make it work, this doesn't seem correct I don't have to do this with regular arrays For example, the following assignment fails without the eval command: #! /bin/bash read -d "\0" -a... (19 Replies)
Discussion started by: Riker1204
19 Replies

13. What is on Your Mind?

UNIX.com is getting crushed in google search these days

For over a decade, unix.com has been in the top tier for search referrals. The keyword "unix" used to rank #4, and when it was down, it was #9. At times, we were close to #2 on Google for the "unix" keyword. Now, in some geos (in the US for example yesterday), in Google search the "unix"... (28 Replies)
Discussion started by: Neo
28 Replies

14. What is on Your Mind?

Your site has been switched to Mobile First Indexing

Well, Google throws the web a curve ball again: I thought I was going to get a break from coding; but no..... https://www.unix.com/members/1-albums215-picture1240.png (15 Replies)
Discussion started by: Neo
15 Replies