NSTask Class on OS X API , lets you run another program as a subprocess and monitor that program’s execution

learn more… | top users | synonyms

0
votes
1answer
25 views

Hide an application on launch when invoked using NSTask

I'm launching an application using NSTask and using NSPipe to get it's stdout and stderr. I'd like to hide it (the GUI) on launch, as the app just does some commands and exits. I can't use NSWorkspace ...
-1
votes
0answers
33 views

iOS and calling Terminal Commandos with IBAction [closed]

NSTask is available for MacOSX, only, right? I want to create an iOS App with some UIButtons calling a terminal command. Which framework should I use for a non jailbroken device ;-) EDIT: Maybe Im ...
0
votes
0answers
28 views

How to use NSTask to act like the expect command on Mac OSx

My goal is to interactively run a command line app from ObjectiveC. For example the git command line app. running the command git clone https://myRepo.git will generally prompt user for username ...
0
votes
1answer
11 views

NSTask File Path Converting Into ShellPath?

I have a Mac (not iOS) application. I want to run a shell command 'find' after the user selects a folder with NSOpenPanel. The following is what I have. NSString *path = [url path]; NSString ...
1
vote
2answers
67 views

NSTask vs System - pros and cons?

I'm at a point in a project where I need to call system commands. I originally started looking at NSTask (as that seems to be the most popular approach) but recently i just came across the system ...
0
votes
1answer
34 views

Objective c: How to know the progress of formatting USB drive in using NSTask

I use NSTask to execute format USB drive from NTFS to FAT32. It works well, but I would like to know the progress when it starts to format. Here is my code: NSTask *task = [NSTask new]; [task ...
0
votes
1answer
9 views

xcode using an included binary to communicate with /dev/cu.*

I have an app that creates a friendly GUI for several command line programs, some c some python (py2app). It uses NSTask but in one instance needs to communicate with a serial usb device on /dev/cu.* ...
-2
votes
0answers
83 views

Error with char, NSString in NSTask

I have a NSTask thats outputting data using #import <Foundation/NSTask.h> int main(){ NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: @"/bin/sh"]; NSArray *arguments = ...
0
votes
0answers
17 views

Getting OS X Instruments to work with custom (green) threads

We have a piece of software that implements a custom version of cooperative (green) multitasking. It works great on OS X, but we can't get Instruments to work properly to profile memory -- Instruments ...
1
vote
1answer
29 views

Using launchctl in from NSTask

I want to execute launchctl from application. For that I am using following code, NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: @"/bin/launchctl"]; NSArray *arguments; arguments ...
0
votes
2answers
33 views

NSTask plutil unrecognized option

I'm trying to use NSTask to convert a binary plist to xml, although run into an error that I don't quite understand. If I take the command NSTask fails on and copy it to the command line it works just ...
0
votes
0answers
19 views

Distributing Cocoa wrappers of command-line scripts

Basically I'm writing a Cocoa wrapper for jpegoptim. I installed jpegoptim with homebrew, then copied the executable from /usr/local/bin to the cocoa project bundle. Then I use NSTask to run the ...
0
votes
0answers
37 views

NSTask stdout consuming large amount of memory

I'm running a command via NSTask that generates a very large amount of output. I created a pipe connected to standard output and am using waitForDataInBackgroundAndNotify and consuming the data with ...
0
votes
1answer
37 views

NSFileHandleDataAvailableNotification files repeatedly with no new data (resulting in very high CPU usage)

I'm attempting to read data from the Standard Error of a NSTask in Cocoa using waitForDataInBackgroundAndNotify. The following code does read the stream, so it's already working partially. The ...
0
votes
2answers
72 views

Execute a terminal command from a Cocoa Desktop app

I am trying to execute a command for creating a Cordova Project in my Cocoa Desktop App but It doesn't work. That's my code: NSTask *task = [NSTask new]; [task ...
0
votes
1answer
85 views

iPhone app: get shell command output

I'm trying to build an app for the iPhone (or iPad, for that matter) in which I want to run some shell commands. The iPhone on which I want it to work is not jailbroken. The system() command seems to ...
1
vote
0answers
37 views

What's the point in using processes instead of threads?

Today I have a theoretical question for you guys. I just joined my first larger software project at my company. For some tasks such as copying files with some additional verification the company ...
7
votes
2answers
185 views

NSUserScriptTask difficulties

I've been trying to make do (see this and this) with the recent NSUserScriptTask class and its subclasses and so far I've solved some problems, but some others remain to be solved. As you can see from ...
0
votes
0answers
36 views

NSUserScriptTask: cancelling tasks?

Is there any way to cancel a running NSUserScriptTask? The only way that comes to mind is to launch a separate process (a command line tool) via NSTask, whose only purpose is to run the ...
0
votes
0answers
19 views

Separate processes that communicate via a NSpipe

I need to realize a communication between two application using NSPipe channels.A NSPipe has to write data and the other has to read the data (Bi-directional) that will communicate between separate ...
2
votes
3answers
177 views

in objective-c is there any easy way to add backslash in front of special characters?

Note: Not sure why this is marked as duplicate as I clearly stated that I don't want to use stringByReplacingOccurrencesOfString over and over again. I have a question regarding the special character ...
0
votes
1answer
26 views

NSTask works in xcode run but not when i run it outside xcode

I have created this app that make use of the /usr/bin/say command in OS X. This method takes the value from a textfield and uses "say" to save it. But when i run this outside xcode. I don't get the ...
0
votes
1answer
43 views

Get output of shell command in ObjC

I've read solutions for doing this using NSTask: they all look very very long... So I managed to do the exact same thing using this code (which gets both standard output and standard error): NSTask ...
0
votes
0answers
37 views

reason: 'couldn't fork: errno 35' while importing video files ,converting and getting creation date

I am trying to import files from sdCard using sdcard reader on ipad. While importing the mts files from the card, i convert them to mov format and save it to the documents directory of the ...
6
votes
1answer
201 views

NSTask subprocess stuck in _dyld_start

I use NSTask to run my helper application. On 99% one my customer systems this works fine, but two got back to me letting me know it doesn't. One of them was nice enough to let me look into the issue ...
0
votes
1answer
79 views

Shell Command output in NSTextView

Thanks for the help. The results of this executed command is displayed in my Xcode Console. What's the best way to get the results of the command to be displayed in an NSTextView? NSString ...
0
votes
0answers
41 views

NSTask Execute string

How can I execute set of shell script using NSTask The Below string must be executed using NSTask. NSString *aString = @"MY_USERNAME=\"SAM\"\ PROJDIR=\"/Path\"\ APPLICATION_NAME=\"AppName\"\ ...
0
votes
2answers
100 views

COCOA : Bring an application to front launched from NPAPI Plugin

I have a NPAPI plugin for MAC that downloads and runs an Application from server. When i use NSTask to open up the application. The application does not come to front. NSBundle *bundle = [NSBundle ...
2
votes
3answers
76 views

NSTask Application loses focus

I'm using NSTask to launch an external app. But at this time, my app looses the focus. I don't want this. The other app just writes some infos in a file and my app reads and displays those infos. Is ...
0
votes
0answers
88 views

NSTask Auth with using ruby bundle init in cocoa

I want run ruby 'bundle init' command in cocoa I connected STPrivilegedTask NSPipe *pipe = [[NSPipe alloc] init]; STPrivilegedTask *task1 = [[STPrivilegedTask alloc] ...
0
votes
1answer
48 views

Trying to run cli with NSTask is failing

I am trying to run the following in a cocoa app: cat PATHTOFILE | python -mjson.tool > OUTPUTFILE NSTask *task = [[NSTask alloc] init]; [task setLaunchPath: @"/bin/cat"]; NSArray ...
0
votes
1answer
61 views

Code to use NSTask with ps to verify a process is running

I am having endless problems checking to see if the screen saver is running. If I use an NSTask with ps, it crashes or hangs on a lot of users. If I use notifications it seems to be spotty for others. ...
0
votes
0answers
32 views

task processIdentifier cocoa

Ok here is my code.. The return of tid is usually about 2-3 off of the actual pid. It is driving me crazy trying to figure out why it will not give me the exact pid. So when I try to kill the ...
0
votes
1answer
78 views

Handling error when using NSTask

As a learning project Im writing a simple gui for Apache stresstesting command line tool "ab". It requiers a full URL, including a filename such as index.html or simular, as one of its parameters. If ...
0
votes
1answer
106 views

why waitForDataInBackgroundAndNotify doesn't work with the real time monitor with more than 1 argument?

I have found the following code from one of the API, and I'm trying to use it to do a real time monitoring of vm_stat 1: BOOL terminated = NO; -(void)realTimeMonitor { NSTask *task = [[NSTask ...
0
votes
1answer
144 views

How to read and write to NSTask

I have it working. However, initially it appears to be waiting for input. How can I read what was output before it stops and is waiting for input? task starts stdout should post data for "sftp> " ...
1
vote
1answer
96 views

Display output from nstask error

Ok so I'm trying to make an app that is basically a GUI for a script the part I can't get to work correctly is displaying the output of the script at first I had it so it should me everything after ...
2
votes
2answers
116 views

NSTask not working on older version of Mac OSX

I have a very odd issue with a method that contains an NSTask. In 10.7+ the functionality works absolutely fine and successfully executes, returning the result and copying the file to the desired ...
0
votes
3answers
38 views

Escaping backslashes in NSTask arguments?

I am trying to get the latest modification date in a directory tree. This works fine in terminal: find . ! -path "*.git*" -exec stat -f "%m" \{} \; | sort -n -r | head -1 But when I try this with ...
4
votes
1answer
129 views

Communication beetwen process using NSPipe,NSTask

I need to realize a communication beetwen two threads using NSPipe channels, the problem is that I don't need to call terminal command by specifying this methods. [task ...
0
votes
0answers
27 views

NSTask to locate and copy file?

I'm looking for a way to search recursively through a directory (possibly using NSTask and /usr/bin/locate), and then would like to copy the file if it's a match. I'm not sure how to accomplish this ...
0
votes
2answers
67 views

How to run find cmd with NSTask

I'm trying to get the following find command to work via NSTask: find /Users/user/projects ! -path '*.git*' -ctime -1 However I am having trouble to get the ignore path part to work. In terminal it ...
3
votes
1answer
121 views

Using NSTask and NSPipe causes 100% CPU usage

I'm trying to run a simple bash script using NSTask and direct the output to a text view. Once the task is executed, the CPU usage of my app is 100%, even though it's a simple echo (for now). I ...
0
votes
1answer
76 views

Output text from NSTask to NSTextField OS X - XCode Objective -C

I was wondering how I would output text from NSTask and send it to a NSTextField on OSX.
1
vote
1answer
278 views

NSTask/NSPipe read from Unix command

I am writing a Cocoa application which needs to execute a UNIX program and read its output, line by line, as they are produced. I set up a NSTask and NSPipe as such: task = [[NSTask alloc] init]; ...
1
vote
1answer
147 views

NSTask requires flush when reading from a process' stdout, Terminal does not

I have a simple Python script that asks for your name, then spits it back out: def main(): print('Enter your name: ') for line in sys.stdin: print 'You entered: ' + line Pretty ...
0
votes
1answer
661 views

How to use NSTask run terminal commands in loop in consistent environment?

I want to use NSTask to simulate the Terminal to run commands. The codes as follows. It can get input in loop and return the process output. int main(int argc, const char * argv[]) { ...
1
vote
0answers
120 views

Terminating NSTask with NSFileHandle set for standard output

I have a batch of code that creates and runs an NSTask instance. Before running I set, for the standard output of the task, a NSFileHandle witch writes directly to a file I have created. Sometimes ...
0
votes
1answer
94 views

NSTask data split by newline \n

I'm new to objective-C, so please forgive me if I'm missing something. But we all have to start somewhere :) I have a snippet of code I got from another open source project that executes a command ...
2
votes
2answers
188 views

understanding Multithreading in iOS

I am trying to understand Multitrading in more detail on iOS. I went through some of the cleass references like NSThread, NSRunLoop, NSTask.. first of all as indicated on the following link: use of ...

1 2 3 4 5