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.

Windows Software 5498 This topic was started by , . Last reply 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 in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Apr 24
Created
Apr 24
Last Response
0
Likes
1 minute
Read Time
User User
Users

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.