Why is this command not working: "ps aux | grep xscreensaver"

13,089

Solution 1

Note the double space in bash's error message before "grep": that probably means you've typed an unbreakable space (AltGr+space), which can happen quite easily if your keyboard requires AltGr to produce the pipe symbol.

Try dropping the spaces around the pipe symbol:

ps aux|grep xscreensaver

In your updated examples:

[root@Hostname ~]# ps aux |  grep xscreensaver
bash:  : command not found...

bash is trying to run the "unbreakable space" command, which doesn't exist; hence the error message, "unbreakable space": command not found...

[root@Hostname ~]# ps aux | grep xscreensaver
bash:  grep: command not found...

bash is trying to run the command whose name is "grep" preceded by an unbreakable space, which doesn't exist either; hence the error message with two apparent spaces between "bash:" and "grep".

Solution 2

try

 which grep

or if necessary

whereis grep

this may gave you some sort of idea if grep is there

Solution 3

The system can't locate your grep command. Try to fix it or add the full path to the command:

ps aux | /bin/grep xscreensaver

It's probable that you have to fix your PATH variable.

Share:
13,089

Related videos on Youtube

somethingSomething
Author by

somethingSomething

Updated on September 18, 2022

Comments

  • somethingSomething
    somethingSomething over 1 year

    I didn't see any hits about this on google, so I'm asking you:

    I just tried to run this command in an ssh session, local is Debian Wheezy KDE, remote is Fedora 21 Gnome:

    ps aux | grep xscreensaver
    

    and this is the output:

    bash:  grep: command not found...
    

    I never seen this before, what is the cause?

    I just few hours before updated the system, but didn't see any packages marked for removal. There are only two users on the system, and only me installs or removes software on it.

    EDIT #1

    Here is the commands and output copied,notice that the space is not there the second time:

    [root@Hostname ~]# ps aux |  grep xscreensaver
    bash:  : command not found...
    [root@Hostname ~]# ps aux | grep xscreensaver
    bash:  grep: command not found...
    
  • somethingSomething
    somethingSomething about 9 years
    Yes your right, your command works.
  • somethingSomething
    somethingSomething about 9 years
    See my update, you are on the right track, because now for some reason it works.