August 29th, 2009 | Tags: , , , , , ,

execve – execute program
USAGE
#include <unistd.h>

int execve(const char *filename, char *const argv[],
char *const envp[]);

DESCRIPTION
execve() executes the program [...]

Comments Off
August 29th, 2009 | Tags: , , ,

epoll_wait – wait for an I/O event on an epoll file descriptor
USAGE
#include <sys/epoll.h>

int epoll_wait(int epfd, struct epoll_event * events,
int [...]

Comments Off
August 29th, 2009 | Tags: , , , ,

epoll_ctl – control interface for an epoll descriptor
USAGE
#include <sys/epoll.h>

int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)

DESCRIPTION
Control an epoll descriptor, epfd, by requesting that the operation op
[...]

Comments Off
August 29th, 2009 | Tags:

epoll_create – open an epoll file descriptor
USAGE
#include <sys/epoll.h>

int epoll_create(int size)

DESCRIPTION
Open an epoll file descriptor by requesting the kernel allocate an
event backing store [...]

Comments Off
August 29th, 2009 | Tags:

expr – evaluate expressions
USAGE
expr EXPRESSION
expr OPTION

DESCRIPTION
–help display this help and exit

–version
output version information [...]

Comments Off
August 29th, 2009 | Tags: , ,
Comments Off
August 29th, 2009 | Tags:

expand – convert tabs to spaces
USAGE
expand [OPTION]… [FILE]…

DESCRIPTION
Convert tabs in each FILE to spaces, writing to standard output. With
no FILE, or when FILE is -, read standard input.

[...]

Comments Off
August 29th, 2009 | Tags: , ,

vim – Vi IMproved, a programmers text editor
USAGE
vim [options] [file ..]
vim [options] -
vim [options] -t tag
vim [options] -q [errorfile]

ex
[...]

Comments Off
August 29th, 2009 | Tags: , , , , ,

etags, ctags – generate tag file for Emacs, vi
USAGE
etags [-aCDGImRVh] [-i file] [-l language]
[-o tagfile] [-r regexp]
[--append] [--no-defines] [--no-globals] [--include=file]
[--ignore-indentation] [--language=language] [--members]
[...]

Comments Off
August 29th, 2009 | Tags:

espdiff – apply the appropriate transformation to a set of patches
USAGE
espdiff [--deep-brainwave-mode] [--recurse] [--compare] [file...]

espdiff {–help | –version}

DESCRIPTION
espdiff applies the appropriate transformation to a patch or set of
[...]

Comments Off