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.

Windows Software 5498 This topic was started by ,


data/avatar/default/avatar33.webp

672 Posts
Location -
Joined 2001-07-01
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

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar30.webp

556 Posts
Location -
Joined 2003-03-28
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.

data/avatar/default/avatar33.webp

686 Posts
Location -
Joined 1999-10-28
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.