Translations by Pekka Niemi

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

451461 of 461 results
563.
Execute commands as long as a test succeeds. Expand and execute COMMANDS as long as the final command in the `while' COMMANDS has an exit status of zero. Exit Status: Returns the status of the last command executed.
2010-01-04
Suorittaa komentoja niin kauan kun testi onnistuu. Laventaa ja suorittaa KOMENTOJA niin kauan kun viimeinen komento ”while KOMENNOT” palauttaa nollan. Paluuarvo: Viimeisen komennon paluuarvo.
564.
Execute commands as long as a test does not succeed. Expand and execute COMMANDS as long as the final command in the `until' COMMANDS has an exit status which is not zero. Exit Status: Returns the status of the last command executed.
2010-01-04
Suorittaa komentoja niin kauan kun testi epäonnistuu. Laventaa ja suorittaa KOMENTOJA niin kauna kun viimeinen komento ”until KOMENNOT” palauttaa nollasta poikkeavan paluuarvon. Paluuarvo: Viimeisen suoritetun komennon paluuarvo.
566.
Define shell function. Create a shell function named NAME. When invoked as a simple command, NAME runs COMMANDs in the calling shell's context. When NAME is invoked, the arguments are passed to the function as $1...$n, and the function's name is in $FUNCNAME. Exit Status: Returns success unless NAME is readonly.
2010-01-04
Luo funktion. Luo komentotulkin funktion NIMI. Jos NIMI käynnistetään komentona, KOMENNOT ajetaan kutsuvan tulkin ympäristössä. Kun NIMI käynnistetään, sen argumentit välitetään parametreina $1...$n, ja funktion nimi sijoitetaan muuttujaan $FUNCNAME. Paluuarvo: Onnistuu, ellei NIMI ole kirjoitussuojattu.
567.
Group commands as a unit. Run a set of commands in a group. This is one way to redirect an entire set of commands. Exit Status: Returns the status of the last command executed.
2010-01-04
Ryhmittää komennot. Suorittaa komennot ryhmässä. Tämä on eräs tapa uudelleenohjata kokonaisen komentojoukon tulosteet. Paluuarvo: Viimeisen suoritetun komennon paluuarvo.
568.
Resume job in foreground. Equivalent to the JOB_SPEC argument to the `fg' command. Resume a stopped or background job. JOB_SPEC can specify either a job name or a job number. Following JOB_SPEC with a `&' places the job in the background, as if the job specification had been supplied as an argument to `bg'. Exit Status: Returns the status of the resumed job.
2010-01-04
Siirtää komennon edustalle. Sama kuin ”fg”-komennon TYÖNKUVAAJA-argumentti. Jatkaa joko keskeytettyä tai taustatyötä. TYÖNKUVAAJA voi määritellä joko työn nimen tai numeron. Jos TYÖNKUVAAJAA seuraa ”&” siirretään työ taustalle, kuten jos työnkuvaaja olisi annettu ”bg”-komennon argumentiksi. Paluuarvo: Työn tila.
569.
Evaluate arithmetic expression. The EXPRESSION is evaluated according to the rules for arithmetic evaluation. Equivalent to "let EXPRESSION". Exit Status: Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise.
2010-01-04
Evaluoi artimeettinen lauseke. LAUSEKKEEN arvo evaluoidaan laskentasääntöjen mukaisesti. Sama kuin ”let LAUSEKE”. Paluuarvo: Palauttaa 1, jos LAUSEKKEEN arvo on 0; muuten palauttaa 0.
570.
Execute conditional command. Returns a status of 0 or 1 depending on the evaluation of the conditional expression EXPRESSION. Expressions are composed of the same primaries used by the `test' builtin, and may be combined using the following operators: ( EXPRESSION ) Returns the value of EXPRESSION ! EXPRESSION True if EXPRESSION is false; else false EXPR1 && EXPR2 True if both EXPR1 and EXPR2 are true; else false EXPR1 || EXPR2 True if either EXPR1 or EXPR2 is true; else false When the `==' and `!=' operators are used, the string to the right of the operator is used as a pattern and pattern matching is performed. When the `=~' operator is used, the string to the right of the operator is matched as a regular expression. The && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to determine the expression's value. Exit Status: 0 or 1 depending on value of EXPRESSION.
2010-01-04
Suorittaa ehdollisen komennon. Palauttaa 0 tai 1 riippuen ehdollisen LAUSEKKEEN tuloksesta. Lausekkeissa käytetään samoja primäärejä kuin sisäänrakennetussa ”test”-komennossa, ja voidaan yhdistellä seuraavilla operaattoreilla: ( LAUSEKE ) Palauttaa LAUSEKKEEN arvon ! LAUSEKE Tosi jos LAUSEKE on epätosi; muuten epätosi LAUSEKE1 && LAUSEKE2 Tosi jos molemmat lausekkeet ovat tosia, muuten epätosi LAUSEKE1 || LAUSEKE2 Tosi jos jompikumpi lausekkeista on tosi, muuten epätosi Käytettäessä ”==”- ja ”!=”-operaattoreita oikeanpuoleista merkkijonoa käytetään mallineena ja suoritetaan haku sen perusteella. Operaattoria ”=~” käytettäessä oikeanpuoleinen merkkijonoa käsitellään kuten säännöllistä lauseketta. Operaattorit ”&&” ja ”||” eivät evaluoi LAUSEKETTA2 jos LAUSEKE1 riittää lausekkeen arvon päättelyyn. Paluuarvo: 0 tai 1 riippuen LAUSEKKEEN arvosta.
571.
Common shell variable names and usage. BASH_VERSION Version information for this Bash. CDPATH A colon-separated list of directories to search for directories given as arguments to `cd'. GLOBIGNORE A colon-separated list of patterns describing filenames to be ignored by pathname expansion. HISTFILE The name of the file where your command history is stored. HISTFILESIZE The maximum number of lines this file can contain. HISTSIZE The maximum number of history lines that a running shell can access. HOME The complete pathname to your login directory. HOSTNAME The name of the current host. HOSTTYPE The type of CPU this version of Bash is running under. IGNOREEOF Controls the action of the shell on receipt of an EOF character as the sole input. If set, then the value of it is the number of EOF characters that can be seen in a row on an empty line before the shell will exit (default 10). When unset, EOF signifies the end of input. MACHTYPE A string describing the current system Bash is running on. MAILCHECK How often, in seconds, Bash checks for new mail. MAILPATH A colon-separated list of filenames which Bash checks for new mail. OSTYPE The version of Unix this version of Bash is running on. PATH A colon-separated list of directories to search when looking for commands. PROMPT_COMMAND A command to be executed before the printing of each primary prompt. PS1 The primary prompt string. PS2 The secondary prompt string. PWD The full pathname of the current directory. SHELLOPTS A colon-separated list of enabled shell options. TERM The name of the current terminal type. TIMEFORMAT The output format for timing statistics displayed by the `time' reserved word. auto_resume Non-null means a command word appearing on a line by itself is first looked for in the list of currently stopped jobs. If found there, that job is foregrounded. A value of `exact' means that the command word must exactly match a command in the list of stopped jobs. A value of `substring' means that the command word must match a substring of the job. Any other value means that the command must be a prefix of a stopped job. histchars Characters controlling history expansion and quick substitution. The first character is the history substitution character, usually `!'. The second is the `quick substitution' character, usually `^'. The third is the `history comment' character, usually `#'. HISTIGNORE A colon-separated list of patterns used to decide which commands should be saved on the history list.
2010-01-04
Yleisiä komentotulkin muuttujia ja niiden käyttö. BASH_VERSION Tämän Bashin versiotiedot. CDPATH Kaksoispistein eroteltu lista hakemistoista, joista etsitään ”cd”-komennolle argumentiksi annettua hakemistoa. GLOBIGNORE Kaksoispistein eroteltu lista mallineista, joihin sopivat tiedostonimet jätetään huomiotta polun laventamisessa. HISTFILE Tiedosto, johon komentohistoriasi tallennetaan. HISTFILESIZE Maksimi rivimäärä tähän tiedostoon tallennetaan. HISTSIZE Tulkin käytettävissä olevien historiarivien maksimimäärä HOME Täydellinen polku sisäänkirjautumishakemistoosi. HOSTNAME Nykyisen palvelimen nimi. HOSTTYPE CPU-tyyppi, jonka alaisuudessa tämä Bash-versio on ajossa. IGNOREEOF Kontrolloi, miten tulkki toimii saadessaan syötteenä pelkän EOF:n (tiedoston loppu). Jos asetettu, sen määrittelemä lukumäärä EOF:iä voidaan lukea syötteenä peräkkäin ennenkuin tulkki poistuu (oletuksena 10). Jos ei ole asetettu, EOF merkitsee syötteen loppua. MACHTYPE Järjestelmää kuvaava merkkijono. MAILCHECK Miten monen sekunnein välein Bash tarkistaa uudet postit. MAILPATH Kaksoispistein eroteltu lista tiedostoista joista Bash tarkistaa uudet postit. OSTYPE Järjestelmän Unix-versio. PATH Kaksoispistein eroteltu lista hakemistoista, joista etsitään komentoja. PROMPT_COMMAND Ennen primäärin kehotteen tulostamista suoritettava komento. PS1 Primääri komentokehote. PS2 Sekundääri kehote. PWD Nykyisen hakemiston täydellinen polkunimi. SHELLOPTS Kaksoispistein eroteltu lista käytössä olevista tulkin valitsimista. TERM Käytettävän päätetyypin nimi. TIMEFORMAT ”time”-käskyn tulosteen muotoilumalline. auto_resume Jos ei tyhjä, ensimmäistä rivillä olevaa komentosanaa etsitään keskeytettyjen töiden listasta. Jos sana löydetään, kyseinen työ tuodaan esiin. ”exact”-arvo tarkoittaa, että komentosanan pitää olla täysin sama kuin keskeytettyjen listalta löytyvä. Arvo ”substring” tarkoittaa että komentosanan pitää olla osa työnimeä. Mikä tahansa muu tarkoittaa että komennon pitää olla keskeytetyn työn nimen alkuosa. histchars Merkit, jotka ohjaavat historialistasta hakua ja pikakorvausta. Ensimmäinen merkki on historiakorvausmerkki, tavallisesti ”!”. Toinen, pikakorvausmerkki, on yleensä ”^”. Kolmas merkki, tavallisesti ”#”, on historiakommentti. HISTIGNORE Kaksoispistein eroteltu lista mallineista, joita käytetään päätettäessä komentojen tallentamisesta historialistaan.
575.
Set and unset shell options. Change the setting of each shell option OPTNAME. Without any option arguments, list all shell options with an indication of whether or not each is set. Options: -o restrict OPTNAMEs to those defined for use with `set -o' -p print each shell option with an indication of its status -q suppress output -s enable (set) each OPTNAME -u disable (unset) each OPTNAME Exit Status: Returns success if OPTNAME is enabled; fails if an invalid option is given or OPTNAME is disabled.
2010-01-04
Asettaa ja poistaa komentotulkin valitsimia. Muuttaa kunkin tulkin VALITSIMEN asetuksen. Ilman argumentteja listaa kaikki tulkin valitsimet ja tiedon, onko valitsin voimassa vai ei. Valitsimet: -o rajaa VALITSIMET niihin, jotka on määritelty käytettäväksi ”set -o”:lla -p tulosta kukin tulkin valitsin ja sen tila -q älä tulosta -s aseta kukin VALITSIN -u poista kukin VALITSIN Paluuarvo: Palauttaa onnistuneen, mikäli VALITSIN on käytössä, epäonnistuu jos on annettu virheellinen VALITSIN tai VALITSIN ei ole käytössä.
578.
Display possible completions depending on the options. Intended to be used from within a shell function generating possible completions. If the optional WORD argument is supplied, matches against WORD are generated. Exit Status: Returns success unless an invalid option is supplied or an error occurs.
2010-01-04
Näyttää mahdolliset täydenteet valitsimista riippuen. Tarkoitettu käytettäväksi komentotulkin funktiossa, joka luo mahdollisia täydenteitä. Jos valinnainen argumentti SANA on annettu, luodaan siihen sopivat täydenteet. Paluuarvo: Palauttaa onnistuneen paitsi jos on annettu virheellinen valitsin tai tapahtuu virhe.
581.
Read lines from a file into an array variable. A synonym for `mapfile'.
2010-01-04
Lukee rivit tiedostosta taulukkomuuttujaan. ”mapfile”:n synonyymi.