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 7:34:43 2012 from 38.107.179.227
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Realpath en anglais

REALPATH(3) Linux Programmer's Manual REALPATH(3)
 
NAME


realpath - return the canonicalized absolute pathname
 
SYNOPSIS


#include #include char *realpath(const char *path, char *resolved_path); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): realpath(): _BSD_SOURCE || _XOPEN_SOURCE >= 500
 
DESCRIPTION


realpath() expands all symbolic links and resolves references to /./, /../ and extra '/' characters in the null terminated string named by path and stores the canonicalized absolute pathname in the buffer of size PATH_MAX named by resolved_path. The resulting path will have no symbolic link, /./ or /../ components.
 
RETURN VALUE


If there is no error, realpath() returns a pointer to the resolved_path. Otherwise it returns a NULL pointer, and the contents of the array resolved_path are undefined. The global variable errno is set to indi- cate the error.
 
ERRORS


EACCES Read or search permission was denied for a component of the path prefix. EINVAL Either path or resolved_path is NULL. (In libc5 this would just cause a segfault.) But, see NOTES below. EIO An I/O error occurred while reading from the file system. ELOOP Too many symbolic links were encountered in translating the pathname.
 
ENAMETOOLONG


A component of a pathname exceeded NAME_MAX characters, or an entire pathname exceeded PATH_MAX characters. ENOENT The named file does not exist.
 
ENOTDIR


A component of the path prefix is not a directory.
 
VERSIONS


On Linux this function appeared in libc 4.5.21.
 
CONFORMING TO


4.4BSD, POSIX.1-2001. In 4.4BSD and Solaris the limit on the pathname length is MAXPATHLEN (found in ). SUSv2 prescribes PATH_MAX and NAME_MAX, as found in or provided by the pathconf(3) function. A typical source fragment would be #ifdef PATH_MAX path_max = PATH_MAX; #else path_max = pathconf(path, _PC_PATH_MAX); if (path_max <= 0) path_max = 4096; #endif (But see the BUGS section.) The 4.4BSD, Linux and SUSv2 versions always return an absolute path- name. Solaris may return a relative pathname when the path argument is relative. The prototype of realpath() is given in in libc4 and libc5, but in everywhere else.
 
NOTES


The glibc implementation of realpath() provides a non-standard exten- sion. If resolved_path is specified as NULL, then realpath() uses mal- loc(3) to allocate a buffer of up to PATH_MAX bytes to hold the resolved pathname, and returns a pointer to this buffer. The caller should deallocate this buffer using free(3).
 
BUGS


Avoid using this function. It is broken by design since (unless using the non-standard resolved_path == NULL feature) it is impossible to determine a suitable size for the output buffer, resolved_path. According to POSIX a buffer of size PATH_MAX suffices, but PATH_MAX need not be a defined constant, and may have to be obtained using path- conf(3). And asking pathconf(3) does not really help, since on the one hand POSIX warns that the result of pathconf(3) may be huge and unsuit- able for mallocing memory. And on the other hand pathconf(3) may return -1 to signify that PATH_MAX is not bounded. The libc4 and libc5 implementation contains a buffer overflow (fixed in libc-5.4.13). Thus, set-user-ID programs like mount(8) need a private version.
 
SEE ALSO


readlink(2), canonicalize_file_name(3), getcwd(3), pathconf(3), sysconf(3)
 
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/. 2007-07-26 REALPATH(3)


 Dernières recherches
Man  en anglais Man realpath en anglaisMan  en français Man realpath en français
Man  en anglais Man readlinkat en anglaisMan  en français Man readlinkat en français
Man  en anglais Man readdir_r en anglaisMan  en français Man readdir_r en français
Man  en anglais Man readahead en anglaisMan  en français Man readahead en français
Man  en anglais Man re_format en anglaisMan  en français Man re_format en français
Man  en anglais Man rcs en anglaisMan  en français Man rcs en français
Man  en anglais Man rcp en anglaisMan  en français Man rcp en français
Man  en anglais Man rcmd en anglaisMan  en français Man rcmd en français
Man  en anglais Man rawmemchr en anglaisMan  en français Man rawmemchr en français
Man  en anglais Man raw en anglaisMan  en français Man raw en français
Man  en anglais Man ranlib en anglaisMan  en français Man ranlib en français
Man  en anglais Man random_r en anglaisMan  en français Man random_r en français
Man  en anglais Man rand_r en anglaisMan  en français Man rand_r en français
Man  en anglais Man queue en anglaisMan  en français Man queue en français
Man  en anglais Man dh_lintian en anglaisMan  en français Man dh_lintian 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