Last active
April 1, 2020 23:56
-
-
Save ur0n2/ecfc2ac3859159fabe02a47fc0f86c78 to your computer and use it in GitHub Desktop.
Doskey_Alias_Setting.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/ur0n2/dotfiles-for-windows