Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

powershell alias

# On your profile.ps1 file
# if you don't have it yet, just run code $PROFILE to create and edit it (with vscode)

function NpmRunDev {  
  npm run dev
}

Set-Alias nrd NpmRunDev
Comment

powershell get aliases

# to get list of all aliases
Get-Alias
# or use its alias
gal

# to get a specific alias
gal <command-name>
# for example
gal man
Comment

PREVIOUS NEXT
Code Example
Shell :: install native run 
Shell :: How to use Github Personal Access Token in Jenkins 
Shell :: bash rm all except 
Shell :: rclone gui 
Shell :: How To Install the Apache Web Server on Ubuntu 18.04 
Shell :: docker save 
Shell :: remove all untracked files git 
Shell :: kill force linux 
Shell :: https://git-lfs.github.com/ 
Shell :: eslint-plugin-react-hooks 
Shell :: docker-compose ps 
Shell :: setup github password terminal 
Shell :: npm install dev dependencies 
Shell :: bigquery export schema json 
Shell :: check total folder size linux 
Shell :: i have installed android studio but is not showing in flutter doctor 
Shell :: Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65 
Shell :: brew install jupyter 
Shell :: homebrew not in path on ubuntu 
Shell :: ubuntu permission all file in folder 
Shell :: kubernetes exec into pod 
Shell :: make pip3 pip 
Shell :: git push in a new branch 
Shell :: remove commit not pushed 
Shell :: delete files 0 bytes linux 
Shell :: where is www folder ubuntu 
Shell :: change file permissions terminal 
Shell :: prometheus reload 
Shell :: too many security failures vnc 
Shell :: OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =