Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to add alias in linux

alias l="ls -al"
Comment

linux alias

# 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

How to use alias in Linux bash

alias ls='ls -F'
alias ll='ls -lh'
Comment

how to create an alias in bash

alias myalias='something'
Comment

PREVIOUS NEXT
Code Example
Shell :: push particular commit in git 
Shell :: git stash pop single file 
Shell :: git rm --cached 
Shell :: tensorflow docker hub 
Shell :: ubuntu check available packages 
Shell :: ubuntu kill service 
Shell :: gitattributes 
Shell :: EsLint global installation 
Shell :: configure apache in ubuntu 
Shell :: docker compose stop and start only specific 
Shell :: installer microsoft teams ubuntu 
Shell :: redis install ubuntu 20.04 
Shell :: zip a file terminal 
Shell :: what version of linux am i running 
Shell :: echo ros path 
Shell :: zsh slow in git repo 
Shell :: socket install 
Shell :: github desktop arch linux 
Shell :: intel hd 4000 ubuntu driver 
Shell :: laravel new project in install 
Shell :: install ppt readr for arch linux 
Shell :: remove yum package 
Shell :: how to compile 64 bit nasm 
Shell :: onlne compiler c linux 
Shell :: install software manager linux kali 
Shell :: bash split array into chunks 
Shell :: delete commit from github 
Shell :: git id 
Shell :: remove yum repository 
Shell :: how to run .rpm file in linux 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =