Tagged Questions
6
votes
1answer
168 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 ...
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
319 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
760 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
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
2answers
119 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
164 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
952 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
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
338 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 ...
1
vote
1answer
24 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
83 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
82 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
93 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
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
126 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
208 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
196 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
158 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
253 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
3answers
566 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
499 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
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
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
279 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
714 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 ...
1
vote
2answers
330 views
Ignoring user input while waiting for a task - Objective-C
I have an app with a button 'convert'. When I click this button, the app starts a new process using NSTask and then greys out the button until the process finishes.
My problem is, the app saves any ...
1
vote
4answers
2k views
NSTask not picking up $PATH from the user's environment
I don't know why this method returns a blank string:
- (NSString *)installedGitLocation {
NSString *launchPath = @"/usr/bin/which";
// Set up the task
NSTask *task = [[NSTask alloc] ...
0
votes
1answer
34 views
Unjaring a .jar file in Objective-C
I was wondering if it was possible to extract the contents of a .jar file into a different directory, then add some files to that directory, and then compress the directory back into a .jar file, with ...
0
votes
2answers
26 views
Disabling Mission Control, Spaces, Dashboard and any other external process
I was wondering if it was possible to (for a short period of time) disable and re-enable external processes to an application like Mission Control, Spaces, Expose, Dashboard, etc... within an ...
0
votes
1answer
53 views
NSTask 'launch path not accessible'
My application requires a dylib file to be in /usr/lib/. If it is not there, the application copies the dylib to /usr/lib/ from the application resources directory. To do this, I use a helper tool, ...
0
votes
1answer
44 views
How to Check FTP Connection via NSTask?
I want to write a cocoa application that checks if my ftp server is still up and running.
So far I learned that CFFTP could be used but this is not object oriented code so a no go for me. Also some ...
0
votes
0answers
31 views
Pseudo TTY in Obj-C
Currently I am working on developing a GUI to some command line tools for Jailbroken iOS devices. I am using NSTask and verified that I was able to capture both stdout and stderr error and print the ...
0
votes
1answer
43 views
Send value from NSTextField to constantly running NSTask
There have been a couple of NSTask related questions, but after paging through them I still have no idea what to do.
I'm writing a frontend for a java server in Cocoa, launched by java -Xmx1024M ...
0
votes
2answers
93 views
readInBackgroundAndNotify method not updating until NSTask complete [Updated]
So I am trying to run a NSTask in a background thread and display its output in a NSTextview that is on a NSPanel attached to my window ( Preference Pane ) using readInBackgroundAndNotify
It does not ...
0
votes
0answers
71 views
Push notifications to application in Objective-C
I have a low-level Objective-C application on 24 iMacs in my lab to handle a few application blocking/overriding tasks and notifications I need it to do. I have one central server which I currently ...
0
votes
1answer
40 views
NSTask start/stop
I'm currently trying to start NSTask on button click and stop it on another button click (two buttons).
Can anybody tell my how to do that?
Thanks, Greets
Julian
0
votes
2answers
57 views
Cocoa - Add some bytes at the end of a file
I'm developing a Cocoa app that has to execute some terminal commands. One of these looks like:
printf "\xc5\x20\x00\x00" >> aFile.txt
I tried with NSTask (but I'm not sure how to split the ...
0
votes
0answers
37 views
How to keep gdb NSTask from detaching?
I'm using NSTask to invoke gdb, attach it to a process and list its ARM Registers. This is done with the command "gdb attach ", followed by "info registers". However, it always detaches after listing ...
0
votes
0answers
19 views
task terminationStatus returns 182?
when I run [task terminationStatus] I get a value 182, so I am wondering what does that int value mean, can I get more info on why the task launch was not successful?
0
votes
1answer
70 views
Can't pass command line arguments to an NSTask running the PHP CLI
Edit: [Solved] see below.
I'm launching PHP as an NSTask and trying to pass some command line options to it:
NSTask *php = [[NSTask alloc] init];
[php setLaunchPath: phpPath];
NSArray *args = ...
0
votes
1answer
116 views
How to run the “Purge” command through NSTask?
I'm making a free Mac app that is simply a wrapper over the "purge" command that can be run in Terminal. I'm tired of the ripoffs that are populating the Mac App Store and I just want to help people. ...
0
votes
1answer
34 views
How can one get the subprocesses of an NSTask's process?
If I use an NSTask object which is launched, is it possible to get the process invoked by the task? For example, Terminal does this to show it in the title bar:
How can I get the process invoked by ...