Tagged Questions
The nstask tag has no wiki summary.
6
votes
1answer
167 views
NSTask and Git — Permissions issues
In my Cocoa application I'm trying to use NSTask to run some basic Git commands. Whenever I run a command that requires permissions (SSH keys) to access a remote (e.g. git push, git pull), it fails ...
6
votes
3answers
239 views
Ensure a subprocess is dead in Cocoa
I'm writing an application that kicks off a subprocess running a simple web server. I am using NSTask and communicating with it with pipes, and everything seems more or less fine. However, if my ...
4
votes
1answer
173 views
Best way to attach GDB to process ID and list its ARM registers on the iPhone?
Just wondering, what is the most reliable/best way to attach GDB to process ID and list its ARM registers on the iPhone (through a cocoa app)? I've been trying NSTask for quite awhile, it is able to ...
3
votes
1answer
136 views
NSTask blocking the main thread
I'm using NSTask, but when I launch the task it blocks the main thread (so I can't update it) until the task ends. This is my code:
NSString *hostsforping = @"google.es";
pingdata = [[NSTask ...
3
votes
1answer
213 views
Can I use NSTask on the iPhone for an app I am not distributing?
I haven't been able to find much information about it, but I've seen a few hints that it is possible to use NSTask in an iPhone app. If it is possible, how would I go about doing so?
I don't want to ...
3
votes
1answer
317 views
Write to NSTasks standard input after launch
I am currently trying to wrap my head around the hole NSTask, NSPipe, NSFileHandle business. So I thought I write a little tool, which can compile and run C code. I also wanted to be able to redirect ...
3
votes
1answer
394 views
NSTask, command line tools and root
I'm working on an app that needs to use dd (I do this with a shell script in the app bundle, that collects parameters from the app itself, makes some checks and then launches dd).
To make this ...
3
votes
1answer
758 views
How can I reload the com.apple.systemuiserver preferences into the SystemUIServer application?
For my Mac OSX application, I have a feature that removes the system clock in the upper right hand corner of the screen when a button is clicked. The preferences that control which system menus are ...
3
votes
3answers
1k views
Obtaining admin privileges to delete files using rm from a Cocoa app
I am making a small app that deletes log files. I am using an NSTask instance which runs rm and srm (secure rm) to delete files.
I want to be able to delete files in:
/Library/Logs
~/Library/Logs
...
3
votes
1answer
1k views
NSTask NSPipe - objective c command line help
Here is my code:
task = [[NSTask alloc] init];
[task setCurrentDirectoryPath:@"/applications/jarvis/brain/"];
[task setLaunchPath:@"/applications/jarvis/brain/server.sh"];
NSPipe * out = [NSPipe ...
2
votes
1answer
158 views
How to open pdf/jpg in Preview by using NSTask on Lion?
I have following code working well on Snow Leopard. It opens a file stored in temporary directory with preferred application.
CFURLRef prefAppUrl = nil;
...
2
votes
2answers
118 views
NSTask: How to get context upon conclusion since no userInfo dictionary is supplied?
I'm trying to zip files using the command-line utility through NSTask.
pseudocode:
controller:
init:
register_self_as_observer_of_nstask_notifications
startZip(file):
file = ...
2
votes
1answer
162 views
Keep a NSTask Session Running - Cocoa
I run a simple grep command in my Cocoa app like so:
NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/grep"];
NSArray *arguments;
arguments = [NSArray arrayWithObjects: ...
2
votes
2answers
949 views
How to give permission using NSTask - objective-c
I need to basically do a "sudo" but, I need to give that kind of permission to my NSTask code. Is this possible?
Thanks,
Elijah
2
votes
2answers
1k views
NSTask and NSPipe example to comunicate with the command line objective-c
Can someone show a quick example on how to use NSTask and NSPipe in conjunction to do this:
Charlie AI - run through terminal to comunicate with the AI
I want to create a nice GUI for it using xcode ...
2
votes
2answers
139 views
NSTask executed only once
I'm having trouble executing different NSTask's. Same launchPath, different arguments. I have a class who's instances administer own NSTask objects and depending on arguments those instances were ...
2
votes
1answer
256 views
NSTask or NSThread?
I have some code that is attached to an NSTimer. Around 5 times every second, it interacts with another application (by emulating keystrokes) and when appropriate spits out an NSNotification, that is ...
2
votes
1answer
562 views
NSNotification and Multithreading
I'm trying to get the notification NSTaskDidTerminateNotification in my multithreaded app but I can't get it working. It does seem to work when I tested it on a single threaded app. In init I have ...
2
votes
3answers
347 views
NSTask returning HTTP Headers
I'm running /usr/bin/perl or /usr/bin/php via an NSTask and want to retrieve the HTTP headers of the program. I've properly formatted the environment (Perl requires env vars to be prefixed with ...
2
votes
1answer
337 views
Converting shell script to Objective-C CLI
I am planning to convert a rather long shell script I have into an Objective C command line tool. I'm planning to use NSTask to run the shell commands (this is a large script, and it has several ...
2
votes
7answers
914 views
Problems with NSTask in OS X 10.6 Snow Leopard
Has anyone else seen or heard of any issues with NSTask in 10.6?
This code worked fine yesterday, and is not working today.
NSTask *task = [converter task];
[task waitUntilExit];
NSLog(@"Task did ...
1
vote
1answer
21 views
Is it possible to set an NSTask-owned window front and key?
I'm working on a Mac app that will optionally provide the ability to install some extra software that's in apple package format. This package requires elevated (root) privileges to install, and ...
1
vote
2answers
82 views
How to run a shell command in cocoa and get output?
After repeated searching I have not found an elegant solution to this issue: how to run a shell command in obj-c and get it's output. I have read many questions regarding this, but they all fail to ...
1
vote
2answers
81 views
NSTask blocks main thread
From my main thread I call a selector using
[self performSelectorInBackground:@selector(startTask) withObject:nil];
This is the method startTask:
-(void)startTask{
NSTask *task = [[NSTask ...
1
vote
2answers
92 views
NSTask only returning standardError in release build
First of all, when debugging and running in Xcode everything works as expected.
But when I try to "share" my app, i.e. make a release build, my NSTask won't output any standardOutput while ...
1
vote
1answer
125 views
How can you start a LaunchAgent for the first time without rebooting, when your code runs as a LaunchDaemon?
I have a LaunchDaemon. When it runs, it checks if SIMBL is installed. If SIMBL is not installed, it uses NSTask to run /usr/sbin/installer on the SIMBL.pkg.
SIMBL's postflight script then tries to ...
1
vote
1answer
41 views
Sending ETX to NSTask
I have an NSTask that's executing another program I wrote. In that command line program, it expects the ETX (control-C, or ASCII value 3) to pause one of its processes and call another function. How ...
1
vote
3answers
150 views
Obj-C design pattern : parallel task launcher
I currently have a shell script that process many images one after the other, with the help of GraphicsMagick. It works fine, all calculations are correct, everything works. (that's not a "simple" ...
1
vote
2answers
177 views
Strange GDB behaviour once application is deployed to a jailbroken iPhone
Im trying to make an application which sends commands to GDB via NSTask and directs the output to the UITextView. It works well on the Mac (iOS Simulator). However, when deployed to the actual device ...
1
vote
2answers
96 views
GDB throws cryptic error when invoked from NSTask
Im trying to use NSTask to invoke GDB, the variable "resultStringID" is actually the corresponding process ID and "abc" is just an NSString. My code for invoking GDB is as follows
NSMutableString ...
1
vote
1answer
137 views
NSTask's real-time output
I have a PHP script which has mutliple sleep() commands. I would like to execute it in my application with NSTask. My script looks like this:
echo "first\n"; sleep(1); echo "second\n"; sleep(1); echo ...
1
vote
1answer
125 views
Run terminal command with NSTask
I want to run a Terminal command in my program.
The command looks like this:
cd /path/to/file/; ./foo HTTPProxy 127.0.0.1
It works with system() but it doesn't work when I use NSTask.
system("cd ...
1
vote
1answer
207 views
executing NSTask in the background
I'm executing a shell script using NSTask but the problem is that the shell script is one of those scripts that keeps running until you press control+c. It starts up fine but then my mac application ...
1
vote
1answer
195 views
NSTask character output to NSTextField unbuffered as continuous stream
What I want to accomplish is to start a command line (CL) task (wrapped NSTask) and pipe (NSPipe) the character output through an NSTextField label in my UI, in real-time as a stream of characters. ...
1
vote
1answer
157 views
Pass data into a tool's stdin using NSTask
Let's say I have some tool that, at some point in its execution, asks for user input. For example, it might ask for name and address. At another point it might ask for a password (and retyping of the ...
1
vote
1answer
252 views
Convert NSTask “/bin/sh -c” command into proper pipeline code
Can someone help me convert the following code into code that instead has two NSTasks for "cat" and "grep", showing how the two can be connected together with pipes? I suppose I would prefer the ...
1
vote
0answers
40 views
Determine which signal uncaught by terminated child process
I have a Mac OS X app (Cocoa), which spawns a C++ console helper app to do some work. The GUI spawns the helper via NSTask, and they communicate with each other via named pipes. This is all good.
...
1
vote
1answer
84 views
Create NSTask for gdb
I'm trying to create an NSTask that uses GDB to attach to a program, but my program just freezes after launching the task. Is this possible to do? Here is the code I'm using:
NSTask *task = [NSTask ...
1
vote
3answers
564 views
NSTask waitUntilExit hanging app on jailbroken iOS
So I've got NSTask to run a script which generates a list of something, into a txt, which I read from. But if I use my current code (below), the alert pops up before the NSTask is finished, thus ...
1
vote
4answers
496 views
Launch an NSTask and bring it to front
I'm trying to launch another application using NSTask
NSArray* argArray = [NSArray arrayWithObjects:fileName, nil];
NSTask* task = [NSTask launchedTaskWithLaunchPath:appName arguments:argArray];
...
1
vote
3answers
216 views
NSTask Output Formatting
I'm using an NSTask to grab the output from /usr/bin/man. I'm getting the output but without formatting (bold, underline). Something that should appear like this:
Bold text with underline
(note the ...
1
vote
2answers
318 views
NSTask Does Not Terminate
I'm trying to use NSTask to run the UNIX 'apropos' command. Here's my code:
NSTask *apropos = [[NSTask alloc] init];
NSPipe *pipe = [[NSPipe alloc] init];
[apropos setLaunchPath:@"/usr/bin/apropos"];
...
1
vote
2answers
311 views
How do I get something similar to Tail -f using NSTask
I need to read the last added line to a log file, in realtime, and capture that line being added.
Something similar to Tail -f.
So my first attempt was to use Tail -f using NSTask.
I can't see any ...
1
vote
2answers
195 views
NSTask problem with 'cat' command
I try concatenating files using the cat command.
When I use this in the terminal, everything works fine :
cat /Users/Home/Desktop/test.mp3* > test.mp3
Trying to reproduce this using an NSTask, ...
1
vote
2answers
298 views
Catch credential needed with NSTask and rsync
Fist post for a french developer!
I'm trying to create a simple synchronization using rsync and objective-c.
So I used NSTask like that :
NSTask *task = [[NSTask alloc] init];
[task ...
1
vote
1answer
280 views
NSTask with bash script problem
For example, i have this simple bash script:
#!/bin/sh
cd $1;
And this cocoa wrapper for it:
NSTask *cd = [[NSTask alloc] init];
NSString *testFolder = [NSString ...
1
vote
3answers
444 views
How would I run an .sh file using NSTask and get its output?
I need to run an .sh file and get its output. I need to see the setup of the file as well.
The .sh file simply runs a java app through terminal.
Any ideas? I'm truly stuck on this.....
Elijah
The ...
1
vote
4answers
384 views
Code problem - objective c - waiting for string value to appear in string value
task = [NSTask new];
[task setLaunchPath:@"/bin/sh"];
[task setArguments:[NSArray arrayWithObject:@"/applications/jarvis/brain/server.sh"]];
[task setCurrentDirectoryPath:@"/"];
NSPipe *outputPipe = ...
1
vote
2answers
278 views
Why does an autoreleased NSTask block the runloop on an NSOperation thread indefinitely?
I've run into an while trying to launch an NSTask from inside an NSOperation.
Here's a very simple app I've put together to showcase the problem. When you click the button, an NSOperation is queued. ...
1
vote
3answers
706 views
NSTask launch path not accessible
I am using the following code in my Cocoa project to call a script I made. The script is in the same folder as the project and even shows up under the "Resources" folder in XCode. The proper path is ...