Skip to content

Instantly share code, notes, and snippets.

@ur0n2
Last active April 1, 2020 23:56
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ur0n2/ecfc2ac3859159fabe02a47fc0f86c78 to your computer and use it in GitHub Desktop.
Save ur0n2/ecfc2ac3859159fabe02a47fc0f86c78 to your computer and use it in GitHub Desktop.
Doskey_Alias_Setting.cmd
::2017. 03. 10
::LeeJunHwan
::This commands make to linux environment on Windows OS
::But, We have powershell... and bash shell on windows 10
::Just For Fun!!!
@echo off
doskey ls = dir /W /P $*
doskey ll = dir /A /P $*
doskey cp = copy $*
doskey rm = del $*
doskey mv = move $*
doskey grep = findstr $*
doskey cat = type $*
doskey date = echo %date%
doskey ifconfig = ipconfig
@echo -----------------------------------------------------------------------------
@echo ★ doskey ls = dir /W /P $*
@echo ★ doskey ll = dir /A /P $*
@echo ★ doskey cp = copy $*
@echo ★ doskey rm = del $*
@echo ★ doskey mv = move $*
@echo ★ doskey grep = findstr $*
@echo ★ doskey cat = type $*
@echo ★ doskey date = echo %date%
@echo ★ doskey ifconfig = ipconfig
@echo -----------------------------------------------------------------------------
@echo ★ 2017. 03. 10
@echo ★ LeeJunHwan
@echo ★ This commands make to linux environment on Windows OS
@echo ★ But, We have powershell... and bash shell on windows 10
@echo ★ Just For Fun!!!
@echo -----------------------------------------------------------------------------
@echo.
@echo on
@ur0n2
Copy link
Author

ur0n2 commented Mar 10, 2017

gist.github.com/ur0n2
Doskey Registry.reg
cmd 실행시 자동 실행 등록 레지스트리

@ur0n2
Copy link
Author

ur0n2 commented Mar 14, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment