Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
macOS & iOS Developer Playground
macOS - Development and Darwin
PLEASE HELP!! No matching processes belonging to you were found
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="tvaughn92" data-source="post: 1209157" data-attributes="member: 196436"><p><strong>"No matching processes belonging to you were found"</strong></p><p></p><p>Ok I get that, but im not trying to run this script as an alternative to using parent controls, or to lock out people from using certain applications on my computer. Im writing this as a prank. Im going to zip it up and send it to a friend. When they open the script it should shut down their ichat. I put the infinite loop in the code so that every time they try to open ichat it will shut back down, until they go into activity monitor and quit bash.</p><p></p><p>The two problems im having is that once I kill terminal, bash quits. The second is when i do a killall iChat i get the error "No matching processes belonging to you were found".</p><p></p><p>How do I killall terminal without killing bash proccess, and how do I get rid of the error message, "No matching processes belonging to you were found".</p><p></p><p>Here is the code:</p><p></p><p>#!/bin/bash</p><p></p><p>while [ true ]; do</p><p></p><p>killall Terminal</p><p></p><p>killall iChat (or whatever app I choose)</p><p></p><p>done</p><p></p><p>Thanks for any help!</p></blockquote><p></p>
[QUOTE="tvaughn92, post: 1209157, member: 196436"] [b]"No matching processes belonging to you were found"[/b] Ok I get that, but im not trying to run this script as an alternative to using parent controls, or to lock out people from using certain applications on my computer. Im writing this as a prank. Im going to zip it up and send it to a friend. When they open the script it should shut down their ichat. I put the infinite loop in the code so that every time they try to open ichat it will shut back down, until they go into activity monitor and quit bash. The two problems im having is that once I kill terminal, bash quits. The second is when i do a killall iChat i get the error "No matching processes belonging to you were found". How do I killall terminal without killing bash proccess, and how do I get rid of the error message, "No matching processes belonging to you were found". Here is the code: #!/bin/bash while [ true ]; do killall Terminal killall iChat (or whatever app I choose) done Thanks for any help! [/QUOTE]
Verification
Name this item. 🍎
Post reply
Forums
macOS & iOS Developer Playground
macOS - Development and Darwin
PLEASE HELP!! No matching processes belonging to you were found
Top