For those of you Running Linux & 2k/XP, something cool..
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.
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
Thanx
Participate on our website and join the conversation
This topic is archived. New comments cannot be posted and votes cannot be cast.
Responses to this topic
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.
Thanx
I do that entirely too much.
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.
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.