Last active
December 11, 2018 19:16
-
-
Save wpupru/fb0d8d633694e5d7f15af10dcda072a7 to your computer and use it in GitHub Desktop.
Aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aliases | |
| alias alias_command_name='commands' | |
| Чтобы просмотреть список всех доступных алиасов, просто выполните команду alias без аргументов | |
| Если алиас вам больше не нужен, вы можете удалить его из системы, используя команду unalias. В качестве аргумента вставьте имя алиаса, который вы хотите удалить. | |
| $ alias | grep ls | |
| alias ls='ls -l' | |
| $ unalias ls | |
| Запись альясов в файл для постоянного использования: | |
| echo 'alias python3.7="python3"' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment