shassouneh 0 Posted April 24, 2003 Oh this is waaaay coool. Now I won't have to curse every time I get a "command not found" because i typed ls instead of dir. Thanx Share this post Link to post
ViolentGreen 0 Posted April 24, 2003 Quote: Oh this is waaaay coool. Now I won't have to curse every time I get a "command not found" because i typed ls instead of dir. Thanx I do that entirely too much. Share this post Link to post
felix 0 Posted April 24, 2003 Not to detract from Alec's post, but I've always found this file useful: Named "ls.bat" @echo off dir /p %1 %2 %3 %4 %5 You can also use dir /w and you can use as many %x as you like. You could also write one to emulate "SU" ie "su.bat" @echo off runas /env /user:domain\administrator %1 %2 %3 %4 %5 Just some ideas. Share this post Link to post