Linux weird problem touch : command not found?

1

I occurred a really weired problem, which is touch : command not found.

I was going to create a blank file, so I type the touch command which didn't work.

I'm running centOS 5.

Any ideas?

BTW: the vi command also not found.

liuxingruo

Posted 2010-05-08T02:54:12.413

Reputation: 111

2Type echo $PATH, what do you see? Or try "/bin/echo $PATH" – None – 2010-05-08T02:56:42.317

Answers

3

You probably temporarily messed up your path. It may be enough to do:

exec /bin/bash

Then you can try touch, etc. to make sure things are normal.

If that doesn't work, the PATH definition is wrong in one of your system files.

Matthew Flaschen

Posted 2010-05-08T02:54:12.413

Reputation: 2 370

1

Try to find the command manually. It will be a file named touch and on my current system it is /bin/touch. You can find it by with locate touch or even find / -name touch. If you find it with locate and it isn't where it says that it should be, that could mean that it was recently moved or deleted.

Once you find the command, make sure that it is in your PATH with echo $PATH. If all this works, try specifying the path and command together (i.e. /bin/touch foo). You may also want to check your aliases to see if there is anything there messing things up.

As an observation, you mention that vi isn't working either. In my system, both vi and touch are in /bin and not /usr/bin. Check to see if you are able to run other commands from there.

kainosnous

Posted 2010-05-08T02:54:12.413

Reputation: 2 388

0

You might have unintentionally deleted touch

You can reinstall by copying it from another computer to:

/bin/

using command: sudo cp path/to/copied/touch /bin

Charanjit Singh

Posted 2010-05-08T02:54:12.413

Reputation: 1

0

Try the following command:

type touch

It may tell you that the touch command is at /usr/bin/touch and if so:

/usr/bin/touch ...

Delan Azabani

Posted 2010-05-08T02:54:12.413

Reputation: 976

it tells me: "-bash: type: touch: not found" – None – 2010-05-08T03:08:20.513