For those of you Running Linux & 2k/XP, something cool..
This is a discussion about For those of you Running Linux & 2k/XP, something cool.. in the Windows Software category; 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 in our website and join the conversation
This subject has been archived. New comments and votes cannot be submitted.
Apr 24
Apr 24
0
1 minute
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.