in one shell do
$ python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...
in another shell
$ ./kmsn SimpleHTTPServer
No process matches given pattern SimpleHTTPServer
while
$ ps aux | grep SimpleHTTPServer
rochacb+ 6270 0.1 0.0 43340 12660 pts/16 S+ 17:16 0:00 python -m SimpleHTTPServer
but it works if I do
$ ./kmsn python -m SimpleHTTPServer
Can't work with partial matching?
in one shell do
in another shell
while
but it works if I do
Can't work with partial matching?