All translations
Views
Actions
Namespaces
Variants
Tools
Enter a message name below to show all available translations.
Found 4 translations.
Name | Current message text |
---|---|
h English (en) | The syntax for creating a bash function is very easy. They can be declared in two different formats: {{File|file=~/.bashrc| content=<pre>... function_name () { [commands] } ...</pre>}} or {{File|file=~/.bashrc| content=<pre>... function function_name { [commands] } ...</pre>}} To pass any number of arguments to the bash function simply, put them right after the function’s name, separated by a space. The passed parameters are $1, $2, $3, etc., corresponding to the position of the parameter after the function’s name. The $0 variable is reserved for the function name. |
h Brazilian Portuguese (pt-br) | A sintaxe para criar uma função bash é muito simples. Elas podem ser declaradas em dois formatos diferentes: {{File|file=~/.bashrc| content=<pre>... function_name () { [commands] } ...</pre>}} ou {{File|file=~/.bashrc| content=<pre>... function function_name { [commands] } ...</pre>}} Para passar qualquer número de argumentos para a função bash, basta colocá-los imediatamente após o nome da função, separados por um espaço. Os parâmetros passados são $1, $2, $3, etc., correspondendo à posição do parâmetro após o nome da função. A variável $0 é reservada para o nome da função. |
h Russian (ru) | Синтаксис для создания функции bash очень прост. Они могут быть объявлены в двух различных форматах: {{File|file=~/.bashrc| content=<pre>... имя_функции (){ [команды] } ...</pre>}} или {{File|file=~/.bashrc| content=<pre>... function имя_функции { [команды] } ...</pre>}} Чтобы просто передать любое количество аргументов в функцию bash, поместите их сразу после имени функции, разделив пробелом. Передаваемые параметры - это $1, $2, $3 и т.д., соответствующие позициям параметра после имени функции. Переменная $0 зарезервирована для имени функции. |
h Turkish (tr) | Bash işlevi oluşturmanın sözdizimi çok kolaydır. İki farklı biçimde bildirilebilirler: {{File|dosya=~/.bashrc| content=<pre>... function_name () { [commands] } ...</pre>}} veya {{File|dosya=~/.bashrc| content=<pre>... function function_name { [commands] } ...</pre>}} Bash işlevine herhangi bir sayıda argüman iletmek için, bunları işlevin adından hemen sonra bir boşlukla ayırarak yerleştirin. Aktarılan parametreler $1, $2, $3 vb. olup, parametrenin işlevin adından sonraki konumuna karşılık gelir. $0 değişkeni işlev adı için ayrılmıştır. |