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 add alias in linux

alias l="ls -al"
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

add alias permentaly on linux

user@system:~$ vim ~/.bashrc
#This will immediately open your .bashrc file and you must start adding aliases by the end of the file, just after the last written line of it.
# wq! to save and close
# and run 
source ~/.bashrc
Comment

PREVIOUS NEXT
Code Example
Shell :: printf @ bash 
Shell :: mkdir powershell 
Shell :: cypress install npm 
Shell :: enable remote desktop powershell server 2019 
Shell :: git reset to undo a merge 
Shell :: Installing Apache Tomcat on MacOS Mojave using Homebrew 
Shell :: install kali desktop kde environment 
Shell :: user.signingkey git 
Shell :: install android studio 
Shell :: install composer debian 
Shell :: git how to see changes made by a commit 
Shell :: setup redis ubuntu 
Shell :: linux display services listening for connections and ports they are listening on 
Shell :: zsh: permission denied 
Shell :: how to know ROS path 
Shell :: install sketch for ubuntu 
Shell :: Permission denied (publickey,keyboard-interactive). 
Shell :: crosh 
Shell :: change wallpaper command line linux 
Shell :: brew update package 
Shell :: Install Git server on Windows 
Shell :: git remove tag from remote 
Shell :: install .net framework 3.5 from windows 
Shell :: install docke machine 
Shell :: nginx block post files 
Shell :: arch linux c# install 
Shell :: macbook pro mac address 
Shell :: gulp-gzip 
Shell :: list node running 
Shell :: unprotected private key file 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =