“Jak utworzyć trwałe alias w Linux” Kod odpowiedzi

Linux trwały alias

printf "%s\n" "alias shh='sqlplus hfdora/hfdora@hfd1" >> ~/.bashrc
source ~/.bashrc # for immediate effect

#or add your alias to ~/.bashrc directly
CertainBadProgrammer

Jak utworzyć trwałe alias w Linux

# you can create alias in bash or linux by using "alias" command like this;

======================
# [Temporary Alias]
alias la="ls -la"
======================
# now you can use "ls -la" command just by typing "la" but it will only work
# till the current session

=============================================================
# [Permanent Alias]
step 1. > open  ~/.bashrc file in your favourite editor
step 2. > paste/write your alias their
step 3. > save and its done
==============================================================
Darkstar

Odpowiedzi podobne do “Jak utworzyć trwałe alias w Linux”

Pytania podobne do “Jak utworzyć trwałe alias w Linux”

Więcej pokrewnych odpowiedzi na “Jak utworzyć trwałe alias w Linux” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu