Wednesday, 31 October 2018

bashrc_file


alias rm='rm -i'
 alias cp='cp -i'
 alias mv='mv -i'
 alias c='clear'
 alias g='gvim'
 alias ls='ls -hF --color=tty'                 # classify files in colour
 alias dir='ls --color=auto --format=vertical'
 alias vdir='ls --color=auto --format=long'
 alias ll='ls -l'                              # long list
 alias la='ls -A'                              # all but . and ..
 alias l='ll -a'
 alias v='cd /cygdrive/d/LABs/verilog/'
 alias s='cd /cygdrive/d/LABs/system_verilog/'
 alias u='cd /cygdrive/d/LABs/uvm/'
alias gvim="/cygdrive/d/EDA_Installations/Vim/vim81/gvim.exe"

export LM_LICENSE_FILE="D:\EDA_Installations\Questasim\flexlm\license_file.dat"



//alias prompt 'set prompt = "%{\033[034m%}`whoami`@``%{\033[034m%}%m:%{\033[035m%}%/%#%b%{\033[030m%}> "'     //This will show complete path on terminal




/*****************************how the .bashrc file works in linux*************************************/

When bash is invoked as an interactive login shell, or as a non-interactive shell with the --login option, it first reads
 and executes commands from the file /etc/profile, if that file exists. After reading that file, it looks 
for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order, and reads and executes commands from the
 first one that exists and is readable. The --noprofile option may be used when the shell is started to inhibit this behavior.

No comments:

Post a Comment

What do 10 nm and 15 nm stand for in VLSI? nm=nano meter                     So, 10nm means in digital elections perspective the dist...

Design verification Engineer