Translations by Sergio Zanchetta

Sergio Zanchetta has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

150 of 311 results
~
Display status of jobs. Lists the active jobs. JOBSPEC restricts output to that job. Without options, the status of all active jobs is displayed. Options: -l lists process IDs in addition to the normal information -n list only processes that have changed status since the last notification -p lists process IDs only -r restrict output to running jobs -s restrict output to stopped jobs If -x is supplied, COMMAND is run after all job specifications that appear in ARGS have been replaced with the process ID of that job's process group leader. Exit Status: Returns success unless an invalid option is given or an error occurs. If -x is used, returns the exit status of COMMAND.
2011-10-28
Visualizza lo stato dei job. Elenca i job attivi. SPECJOB limita l'output a quei job. Senza opzioni, è visualizzato lo stato di tutti i job attivi. Opzioni: -l Elenca gli ID dei processi in aggiunta alle normali informazioni -n Elenca solo i processi che hanno cambiato stato dall'ultima notifica -p Elenca solo l'ID dei processi -r Limita l'output ai job in esecuzione -s Limita l'output ai processi fermati Se viene fornito -x, il COMANDO è eseguito dopo che tutte le specifiche dei job che appaiono in ARGOMENTI sono state rimpiazzate con l'ID del processo leader nel gruppo di quel job. Stato di uscita: Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore. Se viene usato -x, restituisce lo stato di uscita del COMANDO.
~
Set Readline key bindings and variables. Bind a key sequence to a Readline function or a macro, or set a Readline variable. The non-option argument syntax is equivalent to that found in ~/.inputrc, but must be passed as a single argument: e.g., bind '"\C-x\C-r": re-read-init-file'. Options: -m keymap Use KEYMAP as the keymap for the duration of this command. Acceptable keymap names are emacs, emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move, vi-command, and vi-insert. -l List names of functions. -P List function names and bindings. -p List functions and bindings in a form that can be reused as input. -S List key sequences that invoke macros and their values -s List key sequences that invoke macros and their values in a form that can be reused as input. -V List variable names and values -v List variable names and values in a form that can be reused as input. -q function-name Query about which keys invoke the named function. -u function-name Unbind all keys which are bound to the named function. -r keyseq Remove the binding for KEYSEQ. -f filename Read key bindings from FILENAME. -x keyseq:shell-command Cause SHELL-COMMAND to be executed when KEYSEQ is entered. Exit Status: bind returns 0 unless an unrecognized option is given or an error occurs.
2011-10-28
Imposta le associazioni di tasti e le variabili di Readline. Associa una sequenza di tasti a una funzione o a una macro Readline, oppure imposta una variabile di Readline. La sintassi di argomento senza opzione è equivalente a quella trovata in ~/.inputrc, ma deve essere passata come singolo argomento: es., bind '"\C-x\C-r": ri-leggi-file-init'. Opzioni: -m mappatura Usa MAPPATURA come la mappatura per la durata di questo comando. Nomi accettabili per la mappatura sono emacs, emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move, vi-command e vi-insert. -l Elenca i nomi delle funzioni. -P Elenca i nomi delle funzioni e le associazioni. -p Elenca le funzioni e le associazioni in una forma che possa essere riusata come input. -S Elenca le sequenze di tasti che invocano le macro e i loro valori. -s Elenca le sequenze di tasti che invocano le macro e i loro valori in una forma che possa essere riusata come input. -V Elenca i nomi e i valori delle variabili. -v Elenca i nomi e i valori delle variabili in una forma che possa essere riusata come input. -q nome-funzione Identifica il tasto che invoca la funzione nominata. -u nome-funzione Rimuove l'associazione tra la funzione nominata e tutti i tasti associati. -r seqtasti Rimuove l'associazione per la SEQTASTI. -f nomefile Legge le associazioni di tasti da NOMEFILE. -x seqtasti:comando-shell Esegue il COMANDO-SHELL quando viene inserita la SEQTASTI. Stato di uscita: bind restituisce 0 a meno che non sia fornita una opzione non riconosciuta o si riscontri un errore.
~
Mark shell variables as unchangeable. Mark each NAME as read-only; the values of these NAMEs may not be changed by subsequent assignment. If VALUE is supplied, assign VALUE before marking as read-only. Options: -a refer to indexed array variables -A refer to associative array variables -f refer to shell functions -p display a list of all readonly variables and functions An argument of `--' disables further option processing. Exit Status: Returns success unless an invalid option is given or NAME is invalid.
2011-10-28
Marca la variabili di shell come non modificabili. Marca ciascun NOME in sola lettura; i valori di questi NOMI non possono essere modificati da un assegnamento successivo. Se viene fornito il VALORE, lo assegna prima di marcarlo in sola lettura. Opzioni: -a Rimanda alle variabili degli array indicizzati -A Rimanda alle variabili degli array associativi -f Rimanda alle funzioni di shell -p Visualizza un elenco di tutte le variabili e le funzioni in sola lettura Un argomento pari a "--" disabilita ulteriori analisi delle opzioni. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o NOME non sia valido.
~
Read a line from the standard input and split it into fields. Reads a single line from the standard input, or from file descriptor FD if the -u option is supplied. The line is split into fields as with word splitting, and the first word is assigned to the first NAME, the second word to the second NAME, and so on, with any leftover words assigned to the last NAME. Only the characters found in $IFS are recognized as word delimiters. If no NAMEs are supplied, the line read is stored in the REPLY variable. Options: -a array assign the words read to sequential indices of the array variable ARRAY, starting at zero -d delim continue until the first character of DELIM is read, rather than newline -e use Readline to obtain the line in an interactive shell -i text Use TEXT as the initial text for Readline -n nchars return after reading NCHARS characters rather than waiting for a newline, but honor a delimiter if fewer than NCHARS characters are read before the delimiter -N nchars return only after reading exactly NCHARS characters, unless EOF is encountered or read times out, ignoring any delimiter -p prompt output the string PROMPT without a trailing newline before attempting to read -r do not allow backslashes to escape any characters -s do not echo input coming from a terminal -t timeout time out and return failure if a complete line of input is not read withint TIMEOUT seconds. The value of the TMOUT variable is the default timeout. TIMEOUT may be a fractional number. If TIMEOUT is 0, read returns success only if input is available on the specified file descriptor. The exit status is greater than 128 if the timeout is exceeded -u fd read from file descriptor FD instead of the standard input Exit Status: The return code is zero, unless end-of-file is encountered, read times out, or an invalid file descriptor is supplied as the argument to -u.
2011-10-28
Legge una riga dallo standard input e la divide in campi. Legge una singola riga dallo standard input o, se viene fornita l'opzione -u, dal descrittore di file FD. La riga è divisa in campi corrispondenti a parole dove la prima parola è assegnata al primo NOME, la seconda parola al secondo NOME e così via, con ciascuna parola rimanente assegnata al corrispondente ultimo NOME. Sono riconosciuti come delimitatori di parola solo quelli presenti in $IFS. Se non viene fornito alcun NOME, la riga letta è memorizzata nella variabile REPLY. Opzioni: -a array Assegna le parole lette agli indici sequenziali della variabile di ARRAY, iniziando da zero -d delim Continua fino alla lettura del primo carattere di DELIM, invece di un ritorno a capo -e Usa Readline per ottenere la riga in una shell interattiva -i testo Usa TESTO come testo iniziale per Readline -n ncarat Ritorna dopo la lettura di NCARAT caratteri invece di attendere un a capo, ma rispetta un delimitatore se vengono letti meno di NCARAT caratteri prima del delimitatore stesso -N ncarat Ritorna solo dopo la lettura di NCARAT caratteri esatti, a meno che non si riscontri un EOF o un time out di lettura, ignorando qualsiasi delimitatore -p stringa Visualizza la stringa PROMPT senza un a capo finale prima del tentativo di lettura -r Non ammette backslash per fare l'escape dei caratteri -s Non fa l'echo dell'input proveniente da un terminale -t secondi Va in timeout e restituisce insuccesso se non viene letta una riga di input completa entro i SECONDI forniti. Il valore della variabile TMOUT è il timeout predefinito. SECONDI può essere una frazione. Se SECONDI è pari a 0, la lettura restituisce successo solo se l'input è disponibile sul descrittore di file specificato. Lo stato di uscita è maggiore di 128 se viene superato il timeout -u fd Legge dal descrittore di file FD invece che dallo standard input Stato di uscita: Il codice restituito è zero a meno che non sia riscontrato un EOF, un timeout in lettura o venga fornito un descrittore di file non valido come argomento per -u.
~
Formats and prints ARGUMENTS under control of the FORMAT. Options: -v var assign the output to shell variable VAR rather than display it on the standard output FORMAT is a character string which contains three types of objects: plain characters, which are simply copied to standard output; character escape sequences, which are converted and copied to the standard output; and format specifications, each of which causes printing of the next successive argument. In addition to the standard format specifications described in printf(1) and printf(3), printf interprets: %b expand backslash escape sequences in the corresponding argument %q quote the argument in a way that can be reused as shell input %(fmt)T output the date-time string resulting from using FMT as a format string for strftime(3) Exit Status: Returns success unless an invalid option is given or a write or assignment error occurs.
2011-10-28
Formatta e stampa gli ARGOMENTI come indicato dal FORMATO. Opzioni: -v var Assegna l'output alla variabile di shell VAR invece di visualizzarlo sullo standard output FORMATO è una stringa di caratteri che contiene tre tipi di oggetto: caratteri semplici, che sono semplicemente copiati sullo standard output; sequenze di escape dei caratteri, che sono convertite e copiate sullo standard output; specifiche di formato, ognuna delle quali provoca la stampa del successivo argomento consecutivo. In aggiunta alle specifiche di formato standard descritte in printf(1) e printf(3), printf interpreta: %b Espande le sequenze di escape di backslash nell'argomento corrispondente %q Quota l'argomento in modo che possa essere riusato come input per la shell %(fmt)T Visualizza la stringa della data/ora risultante dall'uso di FMT come stringa di formato per strftime(3) Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o si riscontri un errore di scrittura o assegnazione.
~
Write arguments to the standard output. Display the ARGs on the standard output followed by a newline. Options: -n do not append a newline -e enable interpretation of the following backslash escapes -E explicitly suppress interpretation of backslash escapes `echo' interprets the following backslash-escaped characters: \a alert (bell) \b backspace \c suppress further output \e escape character \f form feed \n new line \r carriage return \t horizontal tab \v vertical tab \\ backslash \0nnn the character whose ASCII code is NNN (octal). NNN can be 0 to 3 octal digits \xHH the eight-bit character whose value is HH (hexadecimal). HH can be one or two hex digits Exit Status: Returns success unless a write error occurs.
2011-10-28
Scrive argomenti sullo standard output. Visualizza gli ARG sullo standard output seguiti da un ritorno a capo. Opzioni: -n Non accoda un carattere di ritorno a capo -e Abilita l'interpretazione dei seguenti caratteri backslash di escape -E Disabilita esplicitamente l'interpretazione dei caratteri backslash di escape "echo" interpreta i seguenti caratteri backslash di escape: \a avviso (campanello) \b backspace \c elimina ulteriore output \e carattere di escape \f avanzamento pagina \n ritorno a capo \r ritorno carrello \t tabulazione orizzontale \v tabulazione verticale \\ backslash \0nnn il carattere il cui codice ASCII è NNN (ottale). NNN può avere da 0 a 3 cifre ottali \xHH il carattere otto bit il cui valore è HH (esadecimale). HH può avere una o due cifre esadecimali Stato di uscita: Restituisce successo a meno che non venga riscontrato un errore di scrittura.
~
Evaluate conditional expression. Exits with a status of 0 (true) or 1 (false) depending on the evaluation of EXPR. Expressions may be unary or binary. Unary expressions are often used to examine the status of a file. There are string operators and numeric comparison operators as well. The behavior of test depends on the number of arguments. Read the bash manual page for the complete specification. File operators: -a FILE True if file exists. -b FILE True if file is block special. -c FILE True if file is character special. -d FILE True if file is a directory. -e FILE True if file exists. -f FILE True if file exists and is a regular file. -g FILE True if file is set-group-id. -h FILE True if file is a symbolic link. -L FILE True if file is a symbolic link. -k FILE True if file has its `sticky' bit set. -p FILE True if file is a named pipe. -r FILE True if file is readable by you. -s FILE True if file exists and is not empty. -S FILE True if file is a socket. -t FD True if FD is opened on a terminal. -u FILE True if the file is set-user-id. -w FILE True if the file is writable by you. -x FILE True if the file is executable by you. -O FILE True if the file is effectively owned by you. -G FILE True if the file is effectively owned by your group. -N FILE True if the file has been modified since it was last read. FILE1 -nt FILE2 True if file1 is newer than file2 (according to modification date). FILE1 -ot FILE2 True if file1 is older than file2. FILE1 -ef FILE2 True if file1 is a hard link to file2. String operators: -z STRING True if string is empty. -n STRING STRING True if string is not empty. STRING1 = STRING2 True if the strings are equal. STRING1 != STRING2 True if the strings are not equal. STRING1 < STRING2 True if STRING1 sorts before STRING2 lexicographically. STRING1 > STRING2 True if STRING1 sorts after STRING2 lexicographically. Other operators: -o OPTION True if the shell option OPTION is enabled. -v VAR True if the shell variable VAR is set ! EXPR True if expr is false. EXPR1 -a EXPR2 True if both expr1 AND expr2 are true. EXPR1 -o EXPR2 True if either expr1 OR expr2 is true. arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne, -lt, -le, -gt, or -ge. Arithmetic binary operators return true if ARG1 is equal, not-equal, less-than, less-than-or-equal, greater-than, or greater-than-or-equal than ARG2. Exit Status: Returns success if EXPR evaluates to true; fails if EXPR evaluates to false or an invalid argument is given.
2011-10-28
Analizza espressioni condizionali. Esce con stato 0 (vero) o 1 (falso) in base all'analisi dell'ESPR. Le espressioni possono essere unarie o binarie. Le espressioni unarie sono spesso usate per esaminare lo stato di un file. Esistono anche operatori di stringa e di comparazione numerica. Il comportamento del test dipende dal numero degli argomenti. Leggere la pagina di manuale di bash per le specifiche complete. Operatori su file: -a FILE Vero se il file esiste. -b FILE Vero se è un file speciale a blocchi. -c FILE Vero se è un file speciale a caratteri. -d FILE Vero se il file è una directory. -e FILE Vero se il file esiste. -f FILE Vero se il file esiste ed è un file regolare. -g FILE Vero se il file è un set-group-id. -h FILE Vero se il file è un link simbolico. -L FILE Vero se il file è un link simbolico. -k FILE Vero se il file ha il suo bit "sticky" impostato. -p FILE Vero se il file è una pipe con nome. -r FILE Vero se il file è leggibile dall' utente corrente. -s FILE Vero se il file esiste e non è vuoto. -S FILE Vero se il file è un socket. -t FD Vero se il descrittore di file è aperto su un terminale. -u FILE Vero se il file è un set-user-id. -w FILE Vero se il file è scrivibile dall'utente corrente. -x FILE Vero se il file è eseguibile dall'utente corrente. -O FILE Vero se l'utente corrente è il reale proprietario del file. -G FILE Vero se il gruppo dell'utente corrente è il reale proprietario del file. -N FILE Vero se il file è stato modificato dall'ultima volta che è stato letto. FILE1 -nt FILE2 Vero se il file1 è più recente del file2 (in accordo con la data di modifica). FILE1 -ot FILE2 Vero se il file1 è più vecchio del file2. FILE1 -ef FILE2 Vero se il file1 è un link hardware al file2. Operatori di stringa: -z STRINGA Vero se la stringa e vuota. -n STRINGA STRINGA Vero se la stringa non è vuota. STRINGA1 = STRINGA2 Vero se le stringhe sono uguali. STRINGA1 != STRINGA2 Vero se le stringhe non sono uguali. STRINGA1 < STRINGA2 Vero se la STRINGA1 viene ordinata lessicograficamente prima della STRINGA2. STRINGA1 > STRINGA2 Vero se la STRINGA1 viene ordinata lessicograficamente dopo la STRINGA2. Altri operatori: -o OPZIONE Vero se l'OPZIONE di shell è abilitata. -v VAR Vero se la variabile di shell VAR è impostata. ! ESPR Vero se l'ESPR è falsa. ESPR1 -a ESPR2 Vero se entrambe le espressioni espr1 E espr2 sono vere. ESPR1 -o ESPR2 Vero se sono vere le espressioni espr1 O espr2. arg1 OP arg2 Test aritmetici. OP è uno tra -eq, -ne, -lt, -le, -gt oppure -ge. Gli operatori aritmetici binari restituiscono vero se ARG1 è uguale, non uguale, più piccolo di, più piccolo o uguale, più grande di o più grande o uguale ad ARG2. Stato di uscita: Restituisce successo se l'ESPR viene valutata vera; insuccesso se l'ESPR viene valutata falsa o viene fornito un argomento non valido.
~
Set or unset values of shell options and positional parameters. Change the value of shell attributes and positional parameters, or display the names and values of shell variables. Options: -a Mark variables which are modified or created for export. -b Notify of job termination immediately. -e Exit immediately if a command exits with a non-zero status. -f Disable file name generation (globbing). -h Remember the location of commands as they are looked up. -k All assignment arguments are placed in the environment for a command, not just those that precede the command name. -m Job control is enabled. -n Read commands but do not execute them. -o option-name Set the variable corresponding to option-name: allexport same as -a braceexpand same as -B emacs use an emacs-style line editing interface errexit same as -e errtrace same as -E functrace same as -T hashall same as -h histexpand same as -H history enable command history ignoreeof the shell will not exit upon reading EOF interactive-comments allow comments to appear in interactive commands keyword same as -k monitor same as -m noclobber same as -C noexec same as -n noglob same as -f nolog currently accepted but ignored notify same as -b nounset same as -u onecmd same as -t physical same as -P pipefail the return value of a pipeline is the status of the last command to exit with a non-zero status, or zero if no command exited with a non-zero status posix change the behavior of bash where the default operation differs from the Posix standard to match the standard privileged same as -p verbose same as -v vi use a vi-style line editing interface xtrace same as -x -p Turned on whenever the real and effective user ids do not match. Disables processing of the $ENV file and importing of shell functions. Turning this option off causes the effective uid and gid to be set to the real uid and gid. -t Exit after reading and executing one command. -u Treat unset variables as an error when substituting. -v Print shell input lines as they are read. -x Print commands and their arguments as they are executed. -B the shell will perform brace expansion -C If set, disallow existing regular files to be overwritten by redirection of output. -E If set, the ERR trap is inherited by shell functions. -H Enable ! style history substitution. This flag is on by default when the shell is interactive. -P If set, do not follow symbolic links when executing commands such as cd which change the current directory. -T If set, the DEBUG trap is inherited by shell functions. -- Assign any remaining arguments to the positional parameters. If there are no remaining arguments, the positional parameters are unset. - Assign any remaining arguments to the positional parameters. The -x and -v options are turned off. Using + rather than - causes these flags to be turned off. The flags can also be used upon invocation of the shell. The current set of flags may be found in $-. The remaining n ARGs are positional parameters and are assigned, in order, to $1, $2, .. $n. If no ARGs are given, all shell variables are printed. Exit Status: Returns success unless an invalid option is given.
2011-10-28
Imposta o azzera i valori delle opzioni di shell e dei parametri posizionali. Cambia il valore degli attributi di shell e dei parametri posizionali, o visualizza i nomi e i valori delle variabili di shell. Opzioni: -a Marca le variabili che sono modificate o create per l'esportazione. -b Notifica immediatamente della terminazione di un job. -e Esce immediatamente se un comando esce con uno stao diverso da zero. -f Disabilita la generazione dei nomi file (globbing). -h Ricorda la posizione dei comandi quando vengono cercati. -k Tutte le assegnazioni degli argomenti sono posizionate nell'ambiente per un comando, non solo quelle che precedono il nome del comando stesso. -m Abilita il controllo dei job. -n Legge i comandi senza eseguirli. -o nome-opzione Imposta la variabile corrispondente al nome dell'opzione: allexport Uguale a -a braceexpand Uguale a -B emacs Usa una interfaccia di modifica righe di stile emacs errexit Uguale a -e errtrace Uguale a -E functrace Uguale a -T hashall Uguale a -h histexpand Uguale a -H history Abilita la cronologia comandi ignoreeof Non esce dalla shell dopo aver raggiunto EOF interactive-comments Permette ai commenti di comparire nei comandi interattivi keyword Uguale a -k monitor Uguale a -m noclobber Uguale a -C noexec Uguale a -n noglob Uguale a -f nolog Accettato al momento ma ignorato notify Uguale a -b nounset Uguale a -u onecmd Uguale a -t physical Uguale a -P pipefail Il valore restituito da una pipeline è lo stato dell'ultimo comando che esce con uno stato diverso da zero, oppure zero se nessun comando esce con uno stato diverso da zero posix Modifica il comportamento di bash dove l'operazione predefinita è diversa dallo standard Posix per rispettare lo standard stesso privileged Uguale a -p verbose Uguale a -v vi Usa un'editor di riga stile vi xtrace Uguale a -x -p Abilitato ogni qualvolta gli id utente reali non corrispondono a quelli effettivi. Disabilita l'analisi del file $ENV e l'importazione delle funzioni di shell. Disabilitare questa opzione comporta l'impostazione degli uid e gid effettivi a uid e gid reali. -t Esce dopo la lettura e l'esecuzione di un comando. -u Tratta le variabili non impostate come un errore durante la sostituzione. -v Stampa le righe di input della shell mentre vengono lette. -x Stampa i comandi e i loro argomenti mentre vengono eseguiti. -B La shell effettua l'espansione delle parentesi graffe -C Se impostata, non permette la sovrascrittura dei file regolari esistenti da parte della redirezione dell'output. -E Se impostata, la trap ERR è ereditata dalle funzioni di shell. -H Abilita la sostituzione per la cronologia stile !. Questo flag è abilitato in modo predefinito quando la shell è interattiva. -P Se impostata, non segue i link simbolici quando vengono eseguiti dei comandi come cd, il quale cambia la directory corrente. -T Se impostata, la trap DEBUG è ereditata dalle funzioni di shell. -- Assegna tutti gli argomenti rimasti ai parametri posizionali. Se non sono rimasti argomenti, i parametri posizionali vengono azzerati. - Assegna tutti gli argomenti rimasti ai parametri posizionali. Le opzioni -x e -v sono disabilitate. Usando + al posto di - questi flag vengono disabilitati. I flag possono anche essere usati subito dopo l'invocazione della shell. Il set corrente dei flag può essere trovato in $-. I restanti n ARG sono parametri posizionali e vengono assegnati, in ordine, a $1, $2, .. $n. Se non vengono forniti ARG, vengono stampate tutte le variabili di shell. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida.
~
Modify shell resource limits. Provides control over the resources available to the shell and processes it creates, on systems that allow such control. Options: -S use the `soft' resource limit -H use the `hard' resource limit -a all current limits are reported -b the socket buffer size -c the maximum size of core files created -d the maximum size of a process's data segment -e the maximum scheduling priority (`nice') -f the maximum size of files written by the shell and its children -i the maximum number of pending signals -l the maximum size a process may lock into memory -m the maximum resident set size -n the maximum number of open file descriptors -p the pipe buffer size -q the maximum number of bytes in POSIX message queues -r the maximum real-time scheduling priority -s the maximum stack size -t the maximum amount of cpu time in seconds -u the maximum number of user processes -v the size of virtual memory -x the maximum number of file locks If LIMIT is given, it is the new value of the specified resource; the special LIMIT values `soft', `hard', and `unlimited' stand for the current soft limit, the current hard limit, and no limit, respectively. Otherwise, the current value of the specified resource is printed. If no option is given, then -f is assumed. Values are in 1024-byte increments, except for -t, which is in seconds, -p, which is in increments of 512 bytes, and -u, which is an unscaled number of processes. Exit Status: Returns success unless an invalid option is supplied or an error occurs.
2011-10-28
Modifica i limiti delle risorse di shell. Fornisce il controllo sulle risorse disponibili per la shell e per i processi che crea, sui sistemi che permettono tale controllo. Opzioni: -S Usa il limite di risorse "leggero" -H Usa il limite di risorse "pesante" -a Riporta tutti i limiti correnti -b La dimensione del buffer del socket -c La dimensione massima dei file di core creati -d La dimensione massima di un segmento di dati di processo -e La priorità massima di scheduling ("nice") -f La dimensione massima dei file scritti dalla shell e dai suoi figli -i Il numero massimo di segnali pendenti -l La dimensione massima di memoria che un processo può impegnare -m Il numero massimo di set residenti -n Il numero massimo di descrittori di file aperti -p La dimensione del buffer della pipe -q Il numero massimo di byte nelle code messaggi POSIX -r La priorità massima di scheduling in tempo reale -s La dimensione massima dello stack -t La quantità massima di tempo CPU in secondi -u Il numero massimo di processi utente -v La dimensione della memoria virtuale -x Il numero massimo di lock dei file Se viene fornito un LIMITE, sarà il nuovo valore della risorsa specificata; I valori LIMITE speciali "soft", "hard" e "unlimited" corrispondono rispettivamente agli attuali limiti leggero, pesante e senza limite. Altrimenti viene stampato il valore attuale della risorsa specificata. Se non viene fornita alcuna opzione, viene assunta -f. I valori sono ad incrementi di 1024-byte, ad eccezione di -t che è in secondi, -p che è ad incrementi di 512 byte e -u che è un numero di processi non scalato. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o venga riscontrato un errore.
~
Set or unset values of shell options and positional parameters. Change the value of shell attributes and positional parameters, or display the names and values of shell variables. Options: -a Mark variables which are modified or created for export. -b Notify of job termination immediately. -e Exit immediately if a command exits with a non-zero status. -f Disable file name generation (globbing). -h Remember the location of commands as they are looked up. -k All assignment arguments are placed in the environment for a command, not just those that precede the command name. -m Job control is enabled. -n Read commands but do not execute them. -o option-name Set the variable corresponding to option-name: allexport same as -a braceexpand same as -B emacs use an emacs-style line editing interface errexit same as -e errtrace same as -E functrace same as -T hashall same as -h histexpand same as -H history enable command history ignoreeof the shell will not exit upon reading EOF interactive-comments allow comments to appear in interactive commands keyword same as -k monitor same as -m noclobber same as -C noexec same as -n noglob same as -f nolog currently accepted but ignored notify same as -b nounset same as -u onecmd same as -t physical same as -P pipefail the return value of a pipeline is the status of the last command to exit with a non-zero status, or zero if no command exited with a non-zero status posix change the behavior of bash where the default operation differs from the Posix standard to match the standard privileged same as -p verbose same as -v vi use a vi-style line editing interface xtrace same as -x -p Turned on whenever the real and effective user ids do not match. Disables processing of the $ENV file and importing of shell functions. Turning this option off causes the effective uid and gid to be set to the real uid and gid. -t Exit after reading and executing one command. -u Treat unset variables as an error when substituting. -v Print shell input lines as they are read. -x Print commands and their arguments as they are executed. -B the shell will perform brace expansion -C If set, disallow existing regular files to be overwritten by redirection of output. -E If set, the ERR trap is inherited by shell functions. -H Enable ! style history substitution. This flag is on by default when the shell is interactive. -P If set, do not follow symbolic links when executing commands such as cd which change the current directory. -T If set, the DEBUG trap is inherited by shell functions. -- Assign any remaining arguments to the positional parameters. If there are no remaining arguments, the positional parameters are unset. - Assign any remaining arguments to the positional parameters. The -x and -v options are turned off. Using + rather than - causes these flags to be turned off. The flags can also be used upon invocation of the shell. The current set of flags may be found in $-. The remaining n ARGs are positional parameters and are assigned, in order, to $1, $2, .. $n. If no ARGs are given, all shell variables are printed. Exit Status: Returns success unless an invalid option is given.
2011-09-21
Imposta o azzera i valori delle opzioni di shell e dei parametri posizionali. Cambia il valore degli attributi di shell e dei parametri posizionali, o visualizza i nomi e i valori delle variabili di shell. Opzioni: -a Marca le variabili che sono modificate o create per l'esportazione. -b Notifica immediatamente della terminazione di un job. -e Esce immediatamente se un comando esce con uno stao diverso da zero. -f Disabilita la generazione dei nomi file (globbing). -h Ricorda la posizione dei comandi quando vengono cercati. -k Tutte le assegnazioni degli argomenti sono posizionate nell'ambiente per un comando, non solo quelle che precedono il nome del comando stesso. -m Abilita il controllo dei job. -n Legge i comandi senza eseguirli. -o nome-opzione Imposta la variabile corrispondente al nome dell'opzione: allexport Uguale a -a braceexpand Uguale a -B emacs Usa una interfaccia di modifica righe di stile emacs errexit Uguale a -e errtrace Uguale a -E functrace Uguale a -T hashall Uguale a -h histexpand Uguale a -H history Abilita la cronologia comandi ignoreeof Non esce dalla shell dopo aver raggiunto EOF interactive-comments Permette ai commenti di comparire nei comandi interattivi keyword Uguale a -k monitor Uguale a -m noclobber Uguale a -C noexec Uguale a -n noglob Uguale a -f nolog Accettato al momento ma ignorato notify Uguale a -b nounset Uguale a -u onecmd Uguale a -t physical Uguale a -P pipefail Il valore restituito da una pipeline è lo stato dell'ultimo comando che esce con uno stato diverso da zero, oppure zero se nessun comandeo esce con un o stato diverso da zero posix Modifica il comportamento di bash dove l'operazione predefinita è diversa dallo standard Posix per rispettare lo standard stesso privileged Uguale a -p verbose Uguale a -v vi Usa un'editor di riga stile vi xtrace Uguale a -x -p Abilitato ogni qualvolta gli id utente reali non corrispondono a quelli effettivi. Disabilita l'analisi del file $ENV e l'importazione delle funzioni di shell. Disabilitare questa opzione comporta l'impostazione degli uid e gid effettivi a uid e gid reali. -t Esce dopo la lettura e l'esecuzione di un comando. -u Tratta le variabili non impostate come un errore durante la sostituzione. -v Stampa le righe di input della shell mentre vengono lette. -x Stampa i comandi e i loro argomenti mentre vengono eseguiti. -B La shell effettua l'espansione delle parentesi graffe -C Se impostata, non permette la sovrascrittura dei file regolari esistenti da parte della redirezione dell'output. -E Se impostata, la trap ERR è ereditata dalle funzioni di shell. -H Abilita la sostituzione per la cronologia stile !. Questo flag è abilitato in modo predefinito quando la shell è interattiva. -P Se impostata, non segue i link simbolici quando vengono eseguiti dei comandi come cd, il quale cambia la directory corrente. -T Se impostata, la trap DEBUG è ereditata dalle funzioni di shell. -- Assegna tutti gli argomenti rimasti ai parametri posizionali. Se non sono rimasti argomenti, i parametri posizionali vengono azzerati. - Assegna tutti gli argomenti rimasti ai parametri posizionali. Le opzioni-x e -v sono disabilitate. Usando + al posto di - questi flag vengono disabilitati. I flag possono anche essere usati subito dopo l'invocazione della shell. Il set corrente dei flag può essere trovato in $-. I restanti n ARG sono parametri posizionali e vengono assegnati, in ordine, a $1, $2, .. $n. Se non vengono forniti ARG, vengono stampate tutte le variabili di shell. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida.
~
Set Readline key bindings and variables. Bind a key sequence to a Readline function or a macro, or set a Readline variable. The non-option argument syntax is equivalent to that found in ~/.inputrc, but must be passed as a single argument: e.g., bind '"\C-x\C-r": re-read-init-file'. Options: -m keymap Use KEYMAP as the keymap for the duration of this command. Acceptable keymap names are emacs, emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move, vi-command, and vi-insert. -l List names of functions. -P List function names and bindings. -p List functions and bindings in a form that can be reused as input. -S List key sequences that invoke macros and their values -s List key sequences that invoke macros and their values in a form that can be reused as input. -V List variable names and values -v List variable names and values in a form that can be reused as input. -q function-name Query about which keys invoke the named function. -u function-name Unbind all keys which are bound to the named function. -r keyseq Remove the binding for KEYSEQ. -f filename Read key bindings from FILENAME. -x keyseq:shell-command Cause SHELL-COMMAND to be executed when KEYSEQ is entered. Exit Status: bind returns 0 unless an unrecognized option is given or an error occurs.
2011-09-21
Imposta le associazioni di tasti e le variabili di Readline. Associa una sequenza di tasti a una funzione o a una macro Readline, oppure imposta una variabile di Readline. La sintassi di argomento senza opzione è equivalente a quella trovata in ~/.inputrc, ma deve essere passata come singolo argomento: es., bind '"\C-x\C-r": ri-leggi-file-init'. Opzioni: -m mappatura Usa MAPPATURA come la mappatura per la durata di questo comando. Nomi accettabili per la mappatura sono emacs, emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move, vi-command e vi-insert. -l Elenca i nomi delle funzioni. -P Elenca i nomi delle funzioni e le associazioni. -p Elenca le funzioni e le associazioni in una forma che possa essere riusata come input. -S Elenca le sequenze di tasti che invocano le macro e i loro valori. -s Elenca le sequenze di tasti che invocano le macro e i loro valori in una forma che possa essere riusata come input. -V Elenca i nomi e i valori delle variabili. -v Elenca i nomi e i valori delle variabili in una forma che possa essere riusata come input. -q nome-funzione Identifica il tasto che invoca la funzione nominata. -u nome-funzione Rimuove l'associazione a tutti i tasti associati alla funzione nominata. -r seqtasti Rimuove l'associazione per la SEQTASTI. -f nomefile Legge le associazioni di tasti da NOMEFILE. -x seqtasti:comando-shell Esegue il COMANDO-SHELL quando viene inserita la SEQTASTI. Stato di uscita: bind restituisce 0 a meno che non sia fornita una opzione non riconosciuta o si riscontri un errore.
~
Evaluate conditional expression. Exits with a status of 0 (true) or 1 (false) depending on the evaluation of EXPR. Expressions may be unary or binary. Unary expressions are often used to examine the status of a file. There are string operators and numeric comparison operators as well. The behavior of test depends on the number of arguments. Read the bash manual page for the complete specification. File operators: -a FILE True if file exists. -b FILE True if file is block special. -c FILE True if file is character special. -d FILE True if file is a directory. -e FILE True if file exists. -f FILE True if file exists and is a regular file. -g FILE True if file is set-group-id. -h FILE True if file is a symbolic link. -L FILE True if file is a symbolic link. -k FILE True if file has its `sticky' bit set. -p FILE True if file is a named pipe. -r FILE True if file is readable by you. -s FILE True if file exists and is not empty. -S FILE True if file is a socket. -t FD True if FD is opened on a terminal. -u FILE True if the file is set-user-id. -w FILE True if the file is writable by you. -x FILE True if the file is executable by you. -O FILE True if the file is effectively owned by you. -G FILE True if the file is effectively owned by your group. -N FILE True if the file has been modified since it was last read. FILE1 -nt FILE2 True if file1 is newer than file2 (according to modification date). FILE1 -ot FILE2 True if file1 is older than file2. FILE1 -ef FILE2 True if file1 is a hard link to file2. String operators: -z STRING True if string is empty. -n STRING STRING True if string is not empty. STRING1 = STRING2 True if the strings are equal. STRING1 != STRING2 True if the strings are not equal. STRING1 < STRING2 True if STRING1 sorts before STRING2 lexicographically. STRING1 > STRING2 True if STRING1 sorts after STRING2 lexicographically. Other operators: -o OPTION True if the shell option OPTION is enabled. -v VAR True if the shell variable VAR is set ! EXPR True if expr is false. EXPR1 -a EXPR2 True if both expr1 AND expr2 are true. EXPR1 -o EXPR2 True if either expr1 OR expr2 is true. arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne, -lt, -le, -gt, or -ge. Arithmetic binary operators return true if ARG1 is equal, not-equal, less-than, less-than-or-equal, greater-than, or greater-than-or-equal than ARG2. Exit Status: Returns success if EXPR evaluates to true; fails if EXPR evaluates to false or an invalid argument is given.
2011-09-21
Analizza espressioni condizionali. Esce con stato 0 (vero) o 1 (falso) in base all'analisi dell'ESPR. Le espressioni possono essere unarie o binarie. Le espressioni unarie sono spesso usate per esaminare lo stato di un file. Esistono anche operatori di stringa e di comparazione numerica. Il comportamento del test dipende dal numero degli argomenti. Leggere la pagina di manuale di bash per le specifiche complete. Operatori su file: -a FILE Vero se il file esiste. -b FILE Vero se è un file speciale a blocchi. -c FILE Vero se è un file speciale a caratteri. -d FILE Vero se il file è una directory. -e FILE Vero se il file esiste. -f FILE Vero se il file esiste ed è un file regolare. -g FILE Vero se il file è un set-group-id. -h FILE Vero se il file è un link simbolico. -L FILE Vero se il file è un link simbolico. -k FILE Vero se il file ha il suo bit "sticky" impostato. -p FILE Vero se il file è una pipe con nome. -r FILE Vero se il file è leggibile dal proprio utente. -s FILE Vero se il file esiste e non è vuoto. -S FILE Vero se il file è un socket. -t FD Vero se il descrittore di file è aperto su un terminale. -u FILE Vero se il file è un set-user-id. -w FILE Vero se il file è scrivibile dal proprio utente. -x FILE Vero se il file è eseguibile dal proprio utente. -O FILE Vero se il proprio utente è il reale proprietario del file. -G FILE Vero se il proprio gruppo è il reale proprietario del file. -N FILE Vero se il file è stato modificato dall'ultima volta che è stato letto. FILE1 -nt FILE2 Vero se il file1 è più recente del file2 (in accordo con la data di modifica). FILE1 -ot FILE2 Vero se il file1 è più vecchio del file2. FILE1 -ef FILE2 Vero se il file1 è un link hardware al file2. Operatori di stringa: -z STRINGA Vero se la stringa e vuota. -n STRINGA STRINGA Vero se la stringa non è vuota. STRINGA1 = STRINGA2 Vero se le stringhe sono uguali. STRINGA1 != STRINGA2 Vero se le stringhe non sono uguali. STRINGA1 < STRINGA2 Vero se la STRINGA1 viene ordinata lessicograficamente prima della STRINGA2. STRINGA1 > STRINGA2 Vero se la STRINGA1 viene ordinata lessicograficamente dopo la STRINGA2. Altri operatori: -o OPZIONE Vero se l'OPZIONE di shell è abilitata. -v VAR Vero se la variabile di shell VAR è impostata. ! ESPR Vero se l'ESPR è falsa. ESPR1 -a ESPR2 Vero se entrambe le espressioni espr1 E espr2 sono vere. ESPR1 -o ESPR2 Vero se sono vere le espressioni espr1 O espr2. arg1 OP arg2 Test aritmetici. OP è uno tra -eq, -ne, -lt, -le, -gt oppure -ge. Gli operatori aritmetici binari restituiscono vero se ARG1 è uguale, non uguale, più piccolo di, più piccolo o uguale, più grande di o più grande o uguale ad ARG2. Stato di uscita: Restituisce successo se l'ESPR viene valutata vera; insuccesso se l'ESPR viene valutata falsa o viene fornito un argomento non valido.
~
cd [-L|[-P [-e]]] [dir]
2011-09-21
cd [-L|[-P [-e]]] [dir]
~
Display status of jobs. Lists the active jobs. JOBSPEC restricts output to that job. Without options, the status of all active jobs is displayed. Options: -l lists process IDs in addition to the normal information -n list only processes that have changed status since the last notification -p lists process IDs only -r restrict output to running jobs -s restrict output to stopped jobs If -x is supplied, COMMAND is run after all job specifications that appear in ARGS have been replaced with the process ID of that job's process group leader. Exit Status: Returns success unless an invalid option is given or an error occurs. If -x is used, returns the exit status of COMMAND.
2011-09-21
Visualizza lo stato dei job. Elenca i job attivi. JOBSPEC limita l'output a quei job. Senza opzioni, è visualizzato lo stato di tutti i job attivi. Opzioni: -l Elenca gli ID dei processi in aggiunta alle normali informazioni -n Elenca solo i processi che hanno cambiato stato dall'ultima notifica -p Elenca solo l'ID dei processi -r Limita l'output ai job in esecuzione -s Limita l'output ai processi fermati Se viene fornito -x, il COMANDO è eseguito dopo che tutte le specifiche dei job che appaiono in ARGS sono state rimpiazzate con l'ID del processo leader nel gruppo di quel job. Stato di uscita: Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore. Se viene usato -x, restituisce lo stato di uscita del COMANDO.
~
bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]
2011-09-21
bind [-lpvsPVS] [-m mappatura] [-f nomefile] [-q nome] [-u nome] [-r seqtasti] [-x seqtasti:comando-shell] [seqtasti:funzione-readline o comando-readline]
~
Mark shell variables as unchangeable. Mark each NAME as read-only; the values of these NAMEs may not be changed by subsequent assignment. If VALUE is supplied, assign VALUE before marking as read-only. Options: -a refer to indexed array variables -A refer to associative array variables -f refer to shell functions -p display a list of all readonly variables and functions An argument of `--' disables further option processing. Exit Status: Returns success unless an invalid option is given or NAME is invalid.
2011-09-21
Marca la variabili di shell come non modificabili. Marca ciascun NOME in sola lettura; i valori di questi NOMI non possono modificati da un assegnamento successivo. Se viene fornito il VALORE, lo assegna prima di marcarlo in sola lettura. Opzioni: -a Rimanda alle variabili degli array indicizzati -A Rimanda alle variabili degli array associativi -f Rimanda alle funzioni di shell -p Visualizza un elenco di tutte le variabili e le funzioni in sola lettura Un argomento pari a "--" disabilita ulteriori analisi delle opzioni. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o NOME non sia valido.
~
Set variable values and attributes. Declare variables and give them attributes. If no NAMEs are given, display the attributes and values of all variables. Options: -f restrict action or display to function names and definitions -F restrict display to function names only (plus line number and source file when debugging) -g create global variables when used in a shell function; otherwise ignored -p display the attributes and value of each NAME Options which set attributes: -a to make NAMEs indexed arrays (if supported) -A to make NAMEs associative arrays (if supported) -i to make NAMEs have the `integer' attribute -l to convert NAMEs to lower case on assignment -r to make NAMEs readonly -t to make NAMEs have the `trace' attribute -u to convert NAMEs to upper case on assignment -x to make NAMEs export Using `+' instead of `-' turns off the given attribute. Variables with the integer attribute have arithmetic evaluation (see the `let' command) performed when the variable is assigned a value. When used in a function, `declare' makes NAMEs local, as with the `local' command. The `-g' option suppresses this behavior. Exit Status: Returns success unless an invalid option is supplied or an error occurs.
2011-09-21
Imposta i valori e gli attributi delle variabili. Dichiara le variabili e fornisce loro attributi. Se non vengono forniti NOMI, visualizza gli attributi e i valori di tutte le variabili. Opzioni: -f Limita l'azione o la visualizzazione ai nomi e alle definizioni di funzione -F Limita la visualizzazione ai soli nomi di funzione (più numero di riga e file sorgente durante il debug) -g Crea variabili globali quando usato in una funzione di shell; altrimenti è ignorato -p Visualizza gli attributi e i valori di ciascun NOME Opzioni che impostano gli attributi: -a Rende i NOMI array indicizzati (se supportata) -A Rende i NOMI array associativi (se supportata) -i Fornisce ai NOMI l'attributo "integer" -l Converte i NOMI in lettere minuscole in fase di assegnazione -r Imposta i NOMI in sola lettura -t Fornisce ai NOMI l'attributo "trace" -u Converte i NOMI in lettere maiuscole in fase di assegnazione -x Imposta i NOMI come esportabili Usando "+" al posto di "-" disattiva l'attributo fornito. Le variabili con attributo intero vengono valutate aritmeticamente (vedere il comando "let") quando alla variabile è assegnato un valore. Quando viene usato in una funzione, "declare" rende locali i NOMI, come con il comando "local". Stato di uscita: Restituisce successo a meno che non sia fornita una opzione non valida o si riscontri un errore.
~
Formats and prints ARGUMENTS under control of the FORMAT. Options: -v var assign the output to shell variable VAR rather than display it on the standard output FORMAT is a character string which contains three types of objects: plain characters, which are simply copied to standard output; character escape sequences, which are converted and copied to the standard output; and format specifications, each of which causes printing of the next successive argument. In addition to the standard format specifications described in printf(1) and printf(3), printf interprets: %b expand backslash escape sequences in the corresponding argument %q quote the argument in a way that can be reused as shell input %(fmt)T output the date-time string resulting from using FMT as a format string for strftime(3) Exit Status: Returns success unless an invalid option is given or a write or assignment error occurs.
2011-09-21
Formatta e stampa gli ARGOMENTI come indicato dal FORMATO. Opzioni: -v var Assegna l'output alla variabile di shell VAR invece di visualizzarlo sullo standard output FORMATO è una stringa di caratteri che contiene tre tipi di oggetto: caratteri semplici, che sono semplicemente copiati sullo standard output; sequenze di escape dei caratteri, che sono convertite e copiate sullo standard output; specifiche di formato, ognuna dele quali provoca la stampa del successivo argomento consecutivo. In aggiunta alle specifiche di formato standard descritte in printf(1) e printf(3), printf interpreta: %b Espande le sequenze di escape di backslash nell'argomento corrispondente %q Quota l'argomento in modo che possa essere riusato come input per la shell %(fmt)T Visualizza la stringa della data/ora risultante dall'uso di FMT come stringa di formato per strftime(3) Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o si riscontri un errore di scrittura o assegnazione.
~
Unset values and attributes of shell variables and functions. For each NAME, remove the corresponding variable or function. Options: -f treat each NAME as a shell function -v treat each NAME as a shell variable Without options, unset first tries to unset a variable, and if that fails, tries to unset a function. Some variables cannot be unset; also see `readonly'. Exit Status: Returns success unless an invalid option is given or a NAME is read-only.
2011-09-21
Azzera i valori e gli attributi delle variabili e delle funzioni di shell. Per ciascun NOME, rimuove la corrispondente variabile o funzione. Opzioni: -f Considera ciascun NOME come una funzione di shell -v Considera ciascun NOME come una variabile di shell Senza opzioni, unset prova prima ad azzerare una variabile e, in caso di insuccesso, prova ad azzerare una funzione. Alcune variabili non possono essere azzerate; vedere anche "readonly". Stato di uscita: Restituisce successo a meno che non sia fornita una opzione non valida o NOME sia in sola lettura.
~
Define local variables. Create a local variable called NAME, and give it VALUE. OPTION can be any option accepted by `declare'. Local variables can only be used within a function; they are visible only to the function where they are defined and its children. Exit Status: Returns success unless an invalid option is supplied, an error occurs, or the shell is not executing a function.
2011-09-21
Definisce variabili locali. Crea una variabile locale chiamata NOME fornendogli un VALORE. L'OPZIONE può essere una qualsiasi opzione accettata da "declare". Le variabili locali possono essere usate solo all'interno di una funzione; sono visibili solo alla funzione nella quale sono definite e ai relativi figli. Stato di uscita: Restituisce successo a meno che non venga fornita un'opzione non valida, non si riscontri un errore o la shell non stia eseguendo una funzione.
~
Change the shell working directory. Change the current directory to DIR. The default DIR is the value of the HOME shell variable. The variable CDPATH defines the search path for the directory containing DIR. Alternative directory names in CDPATH are separated by a colon (:). A null directory name is the same as the current directory. If DIR begins with a slash (/), then CDPATH is not used. If the directory is not found, and the shell option `cdable_vars' is set, the word is assumed to be a variable name. If that variable has a value, its value is used for DIR. Options: -L force symbolic links to be followed -P use the physical directory structure without following symbolic links -e if the -P option is supplied, and the current working directory cannot be determined successfully, exit with a non-zero status The default is to follow symbolic links, as if `-L' were specified. Exit Status: Returns 0 if the directory is changed, and if $PWD is set successfully when -P is used; non-zero otherwise.
2011-09-21
Cambia la directory di lavoro della shell. Cambia la directory corrente a DIR. La DIR predefinita è il valore della variabile HOME della shell. La variabile CDPATH definisce il percorso di ricerca per la directory che contiene DIR. I nomi di directory alternative in CDPATH sono separati da un due punti (:). Una nome nullo di directory corrisponde alla directory corrente. Se DIR inizia con uno slash (/), CDPATH non viene usato. Se la directory non viene trovata e l'opzione di shell "cdable_vars" è impostata, si assume che la parola sia un nome di variabile. Se questa variabile ha un valore, viene usato per DIR. Opzioni: -L Forza a seguire i collegamenti simbolici -P Usa la struttura fisica della directory senza seguire i collegamenti simbolici -e Se viene fornita l'opzione -P e non può essere determinata con successo la directory di lavoro corrente, esce con uno stato diverso da zero Il valore predefinito è seguire i collegamenti simbolici, come se fosse specificato "-L". Stato di uscita: Restituisce 0 se viene cambiata la directory o se $PWD è impostata con successo quando viene usato -P; altrimenti un valore diverso da zero.
~
Modify shell resource limits. Provides control over the resources available to the shell and processes it creates, on systems that allow such control. Options: -S use the `soft' resource limit -H use the `hard' resource limit -a all current limits are reported -b the socket buffer size -c the maximum size of core files created -d the maximum size of a process's data segment -e the maximum scheduling priority (`nice') -f the maximum size of files written by the shell and its children -i the maximum number of pending signals -l the maximum size a process may lock into memory -m the maximum resident set size -n the maximum number of open file descriptors -p the pipe buffer size -q the maximum number of bytes in POSIX message queues -r the maximum real-time scheduling priority -s the maximum stack size -t the maximum amount of cpu time in seconds -u the maximum number of user processes -v the size of virtual memory -x the maximum number of file locks If LIMIT is given, it is the new value of the specified resource; the special LIMIT values `soft', `hard', and `unlimited' stand for the current soft limit, the current hard limit, and no limit, respectively. Otherwise, the current value of the specified resource is printed. If no option is given, then -f is assumed. Values are in 1024-byte increments, except for -t, which is in seconds, -p, which is in increments of 512 bytes, and -u, which is an unscaled number of processes. Exit Status: Returns success unless an invalid option is supplied or an error occurs.
2011-09-21
Modifica i limiti delle risorse di shell. Fornisce il controllo sulle risorse disponibili per la shell e per i processi che crea, sui sistemi che permettono tale controllo. Opzioni: -S Usa il limite di risorse "leggero" -H Usa il limite di risorse "pesante" -a Riporta tutti i limiti correnti -b La dimensione del buffer del socket -c La dimensione massima dei file di core creati -d La dimensione massima di un segmento di dati di processo -e La priorità massima di scheduling ("buona") -f La dimensione massima dei file scritti dalla shell e dai suoi figli -i Il numero massimo di segnali pendenti -l La dimensione massima di memoria che un processo può impegnare -m Il numero massimo di set residenti -n Il numero massimo di descrittori di file aperti -p La dimensione del buffer della pipe -q Il numero massimo di byte nelle code messaggi POSIX -r La priorità massima di scheduling in tempo reale -s La dimensione massima dello stack -t La quantità massima di tempo cpu in secondi -u Il numero massimo di processi utente -v La dimensione della memoria virtuale -x Il numero massimo di lock dei file Se viene fornito un LIMITE, sarà il nuovo valore della risorsa specificata; I valori LIMITE speciali "soft", "hard" e "unlimited" corrispondono rispettivamente agli attuali limiti leggero, pesante e senza limite. Altrimenti viene stampato il valore attuale della risorsa specificata. Se non viene fornita alcuna opzione, viene assunta -f. I valori sono ad incrementi di 1024-byte, ad eccezione di -t che è in secondi, -p che è ad incrementi di 512 byte e -u che è un numero di processi non scalato. Stato di uscita: Restituisce successo a meno che non venga fornita una opzione non valida o venga riscontrato un errore.
~
Wait for job completion and return exit status. Waits for the process identified by ID, which may be a process ID or a job specification, and reports its termination status. If ID is not given, waits for all currently active child processes, and the return status is zero. If ID is a a job specification, waits for all processes in the job's pipeline. Exit Status: Returns the status of ID; fails if ID is invalid or an invalid option is given.
2011-09-21
Attende il completamento del job restituendo lo stato di uscita. Attende il processo identificato dall'ID, che può essere un ID di processo o una specifica di job, riportando il suo stato di termine. Se non è fornito un ID, attende tutti i processi figlio correntemente attivi, restituendo zero come stato. Se l'ID è una specifica di job, attende tutti i processi presenti nella pipeline del job. Stato di uscita: Restituisce lo stato dell'ID; insuccesso se l'ID non è valido o viene fornita una opzione non valida.
~
Copyright (C) 2011 Free Software Foundation, Inc.
2011-09-21
Copyright © 2011 Free Software Foundation, Inc.
~
This is free software; you are free to change and redistribute it.
2011-09-21
Questo è software libero; è possibile modificarlo e ridistribuirlo.
~
Remember or display program locations. Determine and remember the full pathname of each command NAME. If no arguments are given, information about remembered commands is displayed. Options: -d forget the remembered location of each NAME -l display in a format that may be reused as input -p pathname use PATHNAME is the full pathname of NAME -r forget all remembered locations -t print the remembered location of each NAME, preceding each location with the corresponding NAME if multiple NAMEs are given Arguments: NAME Each NAME is searched for in $PATH and added to the list of remembered commands. Exit Status: Returns success unless NAME is not found or an invalid option is given.
2011-09-21
Ricorda o visualizza le posizioni dei programmi. Determina e ricorda il nome completo di percorso per ogni comando NOME. Se non viene fornito alcun argomento, sono visualizzate le informazioni sui comandi memorizzati. Opzioni: -d Dimentica la posizione memorizzata di ogni NOME -l Visualizza in un formato che può essere riusato come input -p nomepercorso Usa NOMEPERCORSO come il nome completo di percorso per NOME -r Dimentica tutte le posizioni memorizzate -t Stampa la posizione memorizzata di ogni NOME, facendo precedere ciascuna posizione con il NOME corrispondente se vengono forniti valori NOME multipli Argomenti: NOME Ogni NOME è ricercato in $PATH e aggiunto all'elenco dei comandi memorizzati. Stato di uscita: Restituisce successo a meno che non sia trovato NOME o sia fornita una opzione non valida.
~
declare [-aAfFgilrtux] [-p] [name[=value] ...]
2011-09-21
declare [-aAfFgilrtux] [-p] [nome[=valore] ...]
~
Read a line from the standard input and split it into fields. Reads a single line from the standard input, or from file descriptor FD if the -u option is supplied. The line is split into fields as with word splitting, and the first word is assigned to the first NAME, the second word to the second NAME, and so on, with any leftover words assigned to the last NAME. Only the characters found in $IFS are recognized as word delimiters. If no NAMEs are supplied, the line read is stored in the REPLY variable. Options: -a array assign the words read to sequential indices of the array variable ARRAY, starting at zero -d delim continue until the first character of DELIM is read, rather than newline -e use Readline to obtain the line in an interactive shell -i text Use TEXT as the initial text for Readline -n nchars return after reading NCHARS characters rather than waiting for a newline, but honor a delimiter if fewer than NCHARS characters are read before the delimiter -N nchars return only after reading exactly NCHARS characters, unless EOF is encountered or read times out, ignoring any delimiter -p prompt output the string PROMPT without a trailing newline before attempting to read -r do not allow backslashes to escape any characters -s do not echo input coming from a terminal -t timeout time out and return failure if a complete line of input is not read withint TIMEOUT seconds. The value of the TMOUT variable is the default timeout. TIMEOUT may be a fractional number. If TIMEOUT is 0, read returns success only if input is available on the specified file descriptor. The exit status is greater than 128 if the timeout is exceeded -u fd read from file descriptor FD instead of the standard input Exit Status: The return code is zero, unless end-of-file is encountered, read times out, or an invalid file descriptor is supplied as the argument to -u.
2011-09-21
Legge una riga dallo standard input e la divide in campi. Legge una singola riga dallo standard input o, se viene fornita l'opzione -u, dal descrittore di file FD. La riga è divisa in campi corrispondenti a parole dove la prima parola è assegnata al primo NOME, la seconda parola al secondo NOME e così via, con ciascuna parola rimanente assegnata al corrispondente ultimo NOME. Sono riconosciuti come delimitatori di parola solo quelli presenti in $IFS. Se non viene fornito alcun NOME, la riga letta è memorizzata nella variabile REPLY. Opzioni: -a array Assegna le parole lette agli indici sequenziali della variabile di ARRAY, iniziando da zero -d delim Continua fino alla lettura del primo carattere di DELIM, invece di un a capo -e Usa Readline per ottenere la riga in una shell interattiva -i testo Usa TESTO come testo iniziale per Readline -n ncarat Ritorna dopo la lettura di NCARAT caratteri invece di attendere un a capo, ma rispetta un delimitatore se vengono letti meno di NCARAT caratteri prima del delimitatore stesso -N ncarat Ritorna solo dopo la lettura di NCARAT caratteri esatti, a meno che non si riscontri un EOF o un time out di lettura, ignorando qualsiasi delimitatore -p prompt Visualizza la stringa PROMPT senza un a capo finale prima del tentativo di lettura -r Non ammette backslash per fare l'escape dei caratteri -s Non fa l'echo dell'input proveniente da un terminale -t timeout Va in timeout e restituisce insuccesso se non viene letta una riga di input completa entro TIMEOUT secondi. Il valore della variabile TIMEOUT è il timeout predefinito. TIMEOUT può essere una frazione. Se TIMEOUT è pari a 0, la lettura restituisce successo solo se l'input è disponibile sul descrittore di file specificato. Lo stato di uscita è maggiore di 128 se viene superato il timeout -u fd Legge dal descrittore di file FD invece che dallo standard input Stato di uscita: Il codice restituito è zero a meno che non sia riscontrato un EOF, un timeout in lettura o venga fornito un descrittore di file non valido come argomento per -u.
~
Write arguments to the standard output. Display the ARGs on the standard output followed by a newline. Options: -n do not append a newline -e enable interpretation of the following backslash escapes -E explicitly suppress interpretation of backslash escapes `echo' interprets the following backslash-escaped characters: \a alert (bell) \b backspace \c suppress further output \e escape character \f form feed \n new line \r carriage return \t horizontal tab \v vertical tab \\ backslash \0nnn the character whose ASCII code is NNN (octal). NNN can be 0 to 3 octal digits \xHH the eight-bit character whose value is HH (hexadecimal). HH can be one or two hex digits Exit Status: Returns success unless a write error occurs.
2011-09-21
Scrive argomenti sullo standard output. Visualizza gli ARG sullo standard output seguiti da un carattere newline. Opzioni: -n Non accoda un carattere newline -e Abilita l'interpretazione dei seguenti caratteri backslash di escape -E Disabilita esplicitamente l'interpretazione dei caratteri backslash di escape "echo" interpreta i seguenti caratteri backslash di escape: \a avviso (campanello) \b backspace \c elimina ulteriore output \e carattere di escape \f avanzamento pagina \n ritorno a capo \r ritorno carrello \t tabulazione orizzontale \v tabulazione verticale \\ backslash \0nnn il carattere il cui codice ASCII code è NNN (ottale). NNN può avere da 0 a 3 cifre ottali \xHH il carattere otto bit il cui valore è HH (esadecimale). HH può avere una o due cifre esadecimali Stato di uscita: Restituisce successo a meno che non venga riscontrato un errore di scrittura.
~
Wait for process completion and return exit status. Waits for the specified process and reports its termination status. If PID is not given, all currently active child processes are waited for, and the return code is zero. PID must be a process ID. Exit Status: Returns the status of ID; fails if ID is invalid or an invalid option is given.
2011-09-21
Attende il completamento del processo e restituisce lo stato di uscita. Attende per il processo specificato e riporta il suo stato di terminazione. Se non viene fornito il PID, l'attesa comprende tutti i processi figlio correntemente attivi e il codice restituito è zero. Il PID deve essere un ID di processo. Stato di uscita: Restituisce lo stato dell'ID; insuccesso se l'ID non è valido o viene fornita una opzione non valida.
~
There is NO WARRANTY, to the extent permitted by law.
2011-09-21
Non c'è ALCUNA GARANZIA, nei limiti permessi dalla legge.
4.
%s: cannot assign to non-numeric index
2011-09-21
%s: impossibile assegnare a un indice non numerico
5.
%s: %s: must use subscript when assigning associative array
2011-09-21
%s: %s: deve essere usato un indice nell'assegnazione di un array associativo
6.
%s: cannot create: %s
2011-09-21
%s: creazione non possibile: %s
7.
bash_execute_unix_command: cannot find keymap for command
2011-09-21
bash_execute_unix_command: impossibile trovare una mappatura per il comando
8.
%s: first non-whitespace character is not `"'
2011-09-21
%s: il primo carattere non spazio non è """
9.
no closing `%c' in %s
2011-09-21
carattere di chiusura "%c" non presente in %s
10.
%s: missing colon separator
2011-09-21
%s: separatore di tipo due punti mancante
15.
line editing not enabled
2011-09-21
modifica delle righe non abilitata
16.
`%s': invalid keymap name
2011-09-21
"%s": nome della mappatura non valido
19.
`%s': unknown function name
2011-09-21
"%s" nome della funzione sconosciuto
20.
%s is not bound to any keys.
2011-09-21
%s non è associato ad alcun tasto.
21.
%s can be invoked via
2011-09-21
%s può essere invocato tramite
22.
loop count
2011-09-21
numero di cicli
24.
Returns the context of the current subroutine call. Without EXPR, returns
2011-09-21
Restituisce il contesto della chiamata alla subroutine corrente. Senza ESPR, restituisce
32.
%s: numeric argument required
2011-09-21
%s: è necessario un argomento numerico
33.
%s: not found
2011-09-21
%s: non trovata
36.
`%s': not a valid identifier
2011-09-21
"%s": non è un identificatore valido
41.
`%s': not a pid or valid job spec
2011-09-21
"%s": non è un pid o un numero di job valido
49.
%s: restricted
2011-09-21
%s: limitato