Manjaro All translations

All translations

Enter a message name below to show all available translations.

Message

Found 4 translations.

NameCurrent message text
 h English (en)Let’s create a simple bash function which will create a directory and then navigate into it:
{{File|file=~/.bashrc|
content=<pre>...
mkcd ()
{
  mkdir -p -- "$1" && cd -P -- "$1"
}
...</pre>}}
Now instead of using mkdir to create a new directory and then cd to move into that directory , you can simply type:
{{UserCmd|command=mkcd new_directory}}
==Keeping bash alias in a different file==
Bash allows you to add local aliases in your ~/.bashrc file. To do this create a file called ~/.bash_aliases and add these contents in your ~/.bashrc file:
{{File|file=~/.bashrc|
content=<pre>...
if [ -e $HOME/.bash_aliases ]; then
   source $HOME/.bash_aliases
fi
...</pre>}}
Now you can add any aliases in your ~/.bash_aliases file and then load them into your Bash session with the source ~/.bashrc command.
==Conclusion==
This list is not comprehensive. Almost anything that is commonly used can be shortened with an alias
==See Also==
[https://www.gnu.org/software/bash/manual/html_node/index.html Bash documentation]
[https://wiki.archlinux.org/title/bash#Aliases ArchWiki]
 h Brazilian Portuguese (pt-br)Vamos criar uma função bash simples que criará um diretório e, em seguida, navegará até ele:
{{File|file=~/.bashrc|
content=<pre>...
mkcd ()
{
  mkdir -p -- "$1" && cd -P -- "$1"
}
...</pre>}}
Agora, em vez de usar mkdir para criar um novo diretório e, em seguida, cd para entrar nesse diretório, você pode simplesmente digitar:
{{UserCmd|command=mkcd new_directory}}
==Mantendo aliases bash em um arquivo diferente==
Bash permite que você adicione aliases locais em seu arquivo ~/.bashrc. Para fazer isso, crie um arquivo chamado ~/.bash_aliases e adicione o seguinte conteúdo ao seu arquivo ~/.bashrc:
{{File|file=~/.bashrc|
content=<pre>...
if [ -e $HOME/.bash_aliases ]; then
   source $HOME/.bash_aliases
fi
...</pre>}}
Agora você pode adicionar qualquer alias em seu arquivo ~/.bash_aliases e, em seguida, carregá-los em sua sessão Bash com o comando source ~/.bashrc.
==Conclusão==
Esta lista não é abrangente. Quase qualquer coisa que seja comumente usada pode ser encurtada com um alias.
==Veja Também==
[https://www.gnu.org/software/bash/manual/html_node/index.html Documentação do Bash]
[https://wiki.archlinux.org/title/bash#Aliases ArchWiki]
 h Russian (ru)Давайте создадим простую функцию bash, которая будет создавать каталог и затем переходить в него:
{{File|file=~/.bashrc|
content=<pre>...
mkcd ()
{
  mkdir -p -- "$1" && cd -P -- "$1"
}
...</pre>}}
Теперь вместо того, чтобы использовать mkdir для создания нового каталога, а затем cd для перемещения в этот каталог, вы можете просто набрать:
{{UserCmd|command=mkcd new_directory}}.
==Хранение альяса bash в другом файле==
Bash позволяет добавлять локальные альясы в Ваш ~/.bashrc. Для этого создайте файл ~/.bash_aliases и добавьте его содержимое в Ваш файл ~/.bashrc:
{{File|file=~/.bashrc|
content=<pre>...
if [ -e $HOME/.bash_aliases ]; then
   source $HOME/.bash_aliases
fi
...</pre>}}
Теперь вы можете добавить любые альясы в Ваш ~/.bash_aliases и затем загрузить их в свою Bash-сессию с помощью команды source ~/.bashrc.
==Заключение==
Этот список не является исчерпывающим. Почти все, что часто используется, можно сократить с помощью альяса.
==Смотрите также==
[https://www.gnu.org/software/bash/manual/html_node/index.html Документация по Bash]

[https://wiki.archlinux.org/title/Bash_(Русский)#Псевдонимы ArchWiki]
 h Turkish (tr)Bir dizin oluşturacak ve daha sonra bu dizine gidecek basit bir bash işlevi oluşturalım:
{{Dosya|dosya=~/.bashrc|
içerik=<ön>...
mkcd ()
{
   mkdir -p -- "$1" && cd -P -- "$1"
}
...</pre>}}
Artık yeni bir dizin oluşturmak için mkdir'i ve ardından bu dizine geçmek için cd'yi kullanmak yerine şunu yazabilirsiniz:
{{UserCmd|command=mkcd new_directory}}
==Bash takma adını farklı bir dosyada tutmak==
Bash, ~/.bashrc dosyanıza yerel takma adlar eklemenizi sağlar. Bunu yapmak için ~/.bash_aliases adında bir dosya oluşturun ve bu içerikleri ~/.bashrc dosyanıza ekleyin:
{{File|file=~/.bashrc|
content=<pre>...
if [ -e $HOME/.bash_aliases ]; then
   source $HOME/.bash_aliases
fi
...</pre>}}
Artık ~/.bash_aliases dosyanıza herhangi bir takma ad ekleyebilir ve bunları source ~/.bashrc komutuyla Bash oturumunuza yükleyebilirsiniz.
==Sonuç==
Bu liste kapsamlı değildir. Yaygın olarak kullanılan hemen hemen her şey bir takma adla kısaltılabilir
==Ayrıca Bakınız==
[https://www.gnu.org/software/bash/manual/html_node/index.html Bash belgeleri]
[https://wiki.archlinux.org/title/bash#Aliases ArchWiki]
Cookies help us deliver our services. By using our services, you agree to our use of cookies.