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
0answers
10 views

How using NSTask to lacunch an single shell and process the inputting data from the network in background?

I use the NSTask to launch an shell (single shell) to process some shell commands received from the network circularly. I searched the web and found this example is the similar and I listed it below. ...
1
vote
1answer
24 views

How to get “continous” terminal execution output in a Cocoa app?

To ask elsehow: When I clone a git repo for example, terminal output goes like: Cloning into '/users/whatever'... remote: Counting objects: 1764, done. remote: Compressing objects: 100% (909/909), ...
0
votes
0answers
6 views

Isolated process with NSDocument based app

is possible to create an isolated process inside a cocoa app? As like Safari owns a separate process for each tab, I would to have a separate process for each NSDocument of my app. What's the best way ...
0
votes
0answers
24 views

enumeratorAtPath vs NSTask with find, performance [closed]

What is generally faster when searching for files with specific extensions, calling NSFileManager's enumeratorAtPath: or using an NSTask to run the find command? I'm planning to have a search that ...
0
votes
2answers
21 views

How to grep return result as the matching term

I would like to return only the first instance (case-insensitive) of the term I used to search (if there's a match), how would I do this? example: $ grep "exactly-this" Binary file ...
1
vote
1answer
21 views

Open URL (.mp4) in QuickTime (Cocoa App for OSX)

I would like to open QuickTime and play a remote file. I use the following code: NSTask *task = [[NSTask alloc] init]; [task setLaunchPath:@"/usr/bin/open"]; [task setArguments:[NSArray ...
0
votes
1answer
40 views

Objective c: Error when using NSTask to unmount a USB drive

Here is the problem, when I use the NSTask to unmount the current USB drive it will give me following error: 2013-06-03 09:39:41.096 NAME[1028:303] in moving file view controller dyld: DYLD_ ...
0
votes
0answers
30 views

Sandboxing Application With Command-Line Tool

I'm a bit confused about sandboxing an application that uses a command-line tool (ffmpeg). I won't mention his name, but I read at least two topics at Apple's Developer Forums where an Apple person ...
0
votes
1answer
34 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
59 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 ...
2
votes
1answer
94 views
+50

How do i make a GIT credential helper?

The original question has been edited for clarity: I have a main project that does a git clone https://my.repo.project.git. The project has 2 targets (main target and password helper target). The ...
0
votes
1answer
16 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
83 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
45 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
15 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.* ...
0
votes
0answers
22 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
35 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
35 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
39 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
53 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
94 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
120 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
38 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
194 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
37 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
23 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
189 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
32 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
46 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
43 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
211 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
86 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
45 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
108 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
90 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
93 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
49 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
71 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
36 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
89 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
127 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
160 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
115 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
120 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
44 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
144 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
29 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
72 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
125 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 ...

1 2 3 4 5