Advertisement
Guest User

user-aliases.cmd

a guest
Oct 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ;= @echo off
  2. ;= rem Call DOSKEY and use this file as the macrofile
  3. ;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
  4. ;= rem In batch mode, jump to the end of the file
  5. ;= goto:eof
  6. ;= Add aliases below here
  7. e.=explorer .
  8. gl=git log --oneline --all --graph --decorate $*
  9. ls=ls --show-control-chars -F --color $*
  10. pwd=cd
  11. clear=cls
  12. history=cat "%CMDER_ROOT%\config\.history"
  13. unalias=alias /d $1
  14. cmderr=cd /d "%CMDER_ROOT%"
  15. vi=vim $*
  16. edit=atom $*
  17. wamp=cd c:\wamp64\www\$*
  18. toys=cd %UserProfile%\Documents\dev\toys\
  19. ;sass=node-sass --watch --recursive --source-map true --output-style compact --output . $*.scss
  20. ;siteget=wget -mkEnp --reject "jpg,png,gif,pdf" --user=$2 --password=$3 $1
  21. react=create-react-app $* $t cd $* $t npm install -g json $t npm install --save node-sass-chokidar npm-run-all $t json -I -f package.json -e "this.scripts={'build-css':'node-sass-chokidar src/ -o src/','watch-css':'npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive','start-js':'react-scripts start','start':'npm-run-all -p watch-css start-js','build':'npm run build-css && react-scripts build','test':'react-scripts test --env=jsdom','eject':'react-scripts eject'}" $t echo src/**/*.css $g$g .gitignore $t ren src\index.css index.scss $t atom . $t npm run start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement