Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

linux permanent alias

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

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

how to create permanent alias in 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
==============================================================
Comment

linux add alias

# syntax
# alias *<alias-name>="*<what-alias-represents>"

# example
alias ll="ls -lrt"
Comment

PREVIOUS NEXT
Code Example
Shell :: compare strings shell 
Shell :: ls all subdirectories 
Shell :: pipe shell output to vim 
Shell :: HOW TLONG FOR VS TO INSTALL?!?!? 
Shell :: install/uninstall deb packages from linux/ubuntu 
Shell :: Connecting to WSL2 server via local network 
Shell :: ubuntu install java 16 
Shell :: install nomad 
Shell :: how to force push heroku 
Shell :: how to change git author 
Shell :: git how to archive a branch 
Shell :: wget download filename 
Shell :: copy folder from on server machine 
Shell :: jq to csv 
Shell :: shell foreach line 
Shell :: shell script in jenkins pipeline 
Shell :: install node js redhat 8 
Shell :: flutter doctor android studio not installed 
Shell :: bash script 
Shell :: git commit to a new branch 
Shell :: change default kube editor nano 
Shell :: setting sublimeREPL in linux 
Shell :: move from commit to stage 
Shell :: run dotnet core app 
Shell :: ec2 download file 
Shell :: rsync only new files 
Shell :: debian sudo without password 
Shell :: get podman ubuntu 
Shell :: ansible choose host file 
Shell :: add bootstrap to gatsby 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =