Your Unix Processes


Getting a list of your processes

To get a list of the processes you have running, type

	ps -u <your_user_name>
	
For example,
	ps -u edward
	

Another useful command is...

	ps -elf | grep <your_user_name>
	
For example,
	ps -elf | grep edward