편하게 살자

dos에서 linux command 사용 - doskey and ls ll

mulderu 2014. 3. 3. 22:53

요즘 맥북사용자가 많이 늘고 있는것 같습니다... 

물론 윈도를 버릴수는 없죠, 그러다 보니 도스창에서 많이들 ls 를 입력 하곤 합니다.... 

돌아오는 답변이야,,,, 알수 없다죠.. - 매너없는 답변...


그래서 


아래와 같이 처리하면 어느정도 도스의 매너없는 답변을 피할 수 있습니다.

c:\Users\your-name\autorun.bat

@ECHO OFF
doskey ls=dir /b $*
doskey ll=dir $*
doskey cat=type $*
doskey ..=cd..
doskey grep=find "$1" $2
doskey mv=ren $*
doskey rm=del $*


regedit :

Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
"Autorun"="%USERPROFILE%\\autorun.bat"

출처 : http://goo.gl/tgsxZL