Bash-Linux.com : Le SHELL pour les nuls

  Actuellement 50 lignes de commande et 1472 man disponibles
login as: root
root@213.186.33.18's password:
Last login: Wed May 30 11:19:19 2012 from 38.107.179.226
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Splice en anglais

SPLICE(2) Linux Programmer's Manual SPLICE(2)
 
NAME


splice - splice data to/from a pipe
 
SYNOPSIS


#define _GNU_SOURCE #include long splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags);
 
DESCRIPTION


splice() moves data between two file descriptors without copying between kernel address space and user address space. It transfers up to len bytes of data from the file descriptor fd_in to the file descriptor fd_out, where one of the descriptors must refer to a pipe. If fd_in refers to a pipe, then off_in must be NULL. If fd_in does not refer to a pipe and off_in is NULL, then bytes are read from fd_in starting from the current file offset, and the current file offset is adjusted appropriately. If fd_in does not refer to a pipe and off_in is not NULL, then off_in must point to a buffer which specifies the starting offset from which bytes will be read from fd_in; in this case, the current file offset of fd_in is not changed. Analogous statements apply for fd_out and off_out. The flags argument is a bit mask that is composed by ORing together zero or more of the following values: SPLICE_F_MOVE Attempt to move pages instead of copying. This is only a hint to the kernel: pages may still be copied if the kernel cannot move the pages from the pipe, or if the pipe buffers don't refer to full pages. SPLICE_F_NONBLOCK Do not block on I/O. This makes the splice pipe operations non-blocking, but splice() may neverthe- less block because the file descriptors that are spliced to/from may block (unless they have the O_NONBLOCK flag set). SPLICE_F_MORE More data will be coming in a subsequent splice. This is a helpful hint when the fd_out refers to a socket (see also the description of MSG_MORE in send(2), and the description of TCP_CORK in tcp(7)) SPLICE_F_GIFT Unused for splice(); see vmsplice(2).
 
RETURN VALUE


Upon successful completion, splice() returns the number of bytes spliced to or from the pipe. A return value of 0 means that there was no data to transfer, and it would not make sense to block, because there are no writers connected to the write end of the pipe referred to by fd_in. On error, splice() returns -1 and errno is set to indicate the error.
 
ERRORS


EBADF One or both file descriptors are not valid, or do not have proper read-write mode. EINVAL Target file system doesn't support splicing; neither of the descriptors refers to a pipe; or offset given for non-seekable device. ENOMEM Out of memory. ESPIPE Either off_in or off_out was not NULL, but the corresponding file descriptor refers to a pipe.
 
VERSIONS


The splice() system call first appeared in Linux 2.6.17.
 
CONFORMING TO


This system call is Linux-specific.
 
NOTES


The three system calls splice(), vmsplice(2), and tee(2), provide userspace programs with full control over an arbitrary kernel buffer, implemented within the kernel using the same type of buffer that is used for a pipe. In overview, these system calls perform the following tasks: splice() moves data from the buffer to an arbitrary file descriptor, or vice versa, or from one buffer to another. tee(2) "copies" the data from one buffer to another. vmsplice(2) "copies" data from user space into the buffer. Though we talk of copying, actual copies are generally avoided. The kernel does this by implementing a pipe buffer as a set of reference- counted pointers to pages of kernel memory. The kernel creates "copies" of pages in a buffer by creating new pointers (for the output buffer) referring to the pages, and increasing the reference counts for the pages: only pointers are copied, not the pages of the buffer.
 
EXAMPLE


See tee(2).
 
SEE ALSO


sendfile(2), tee(2), vmsplice(2), feature_test_macros(7)
 
COLOPHON


This page is part of release 3.05 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2008-01-31 SPLICE(2)


 Dernières recherches
Man  en anglais Man splice en anglaisMan  en français Man splice en français
Man  en anglais Man spkac en anglaisMan  en français Man spkac en français
Man  en anglais Man spawn en anglaisMan  en français Man spawn en français
Man  en anglais Man soelim en anglaisMan  en français Man soelim en français
Man  en anglais Man socketcall en anglaisMan  en français Man socketcall en français
Man  en anglais Man sockatmark en anglaisMan  en français Man sockatmark en français
Man  en anglais Man snprintf en anglaisMan  en français Man snprintf en français
Man  en anglais Man smtpd en anglaisMan  en français Man smtpd en français
Man  en anglais Man smtp en anglaisMan  en français Man smtp en français
Man  en anglais Man smime en anglaisMan  en français Man smime en français
Man  en anglais Man skill en anglaisMan  en français Man skill en français
Man  en anglais Man sin en anglaisMan  en français Man sin en français
Man  en anglais Man sigtimedwait en anglaisMan  en français Man sigtimedwait en français
Man  en anglais Man sigsetjmp en anglaisMan  en français Man sigsetjmp en français
Man  en anglais Man sigset en anglaisMan  en français Man sigset en français

 Recherche

Dans ce moteur de recherche, vous pouvez taper directement votre besoin, en une phrase normale, humaine.
Exemple : vous cherchez comment remplacer un mot par un autre dans tous les fichiers d'un certain dossier. Vous pouvez écrire "Comment remplacer un mot par un autre dans tous les fichiers d'un dossier". Le moteur vous ramenera les résultats en fonction de leur pertinence.
Vous pouvez bien sûr ne chercher qu'un seul mot-clé, par exemple "find".
 Toutes les lignes de code
Par popularité
Par fonction
Recherche avancée
 Les logiciels SHELL/SSH
Putty
Astuces Bash
Faire du SHELL avec PHP!
 La doc officielle
Les man Linux en français
Les man Linux en anglais
 Proposer vos bash
Partagez vos lignes!
 Les requêtes
Déposer une requête
Voir/répondre à une requête
 Quelques sites interessants
Bons sites pour apprendre
 Rechercher