I've looked everywhere, and can't seem to find cupsctl anywhere. I assume it's a lot like echo or sh, it's just an executable with a PATH variable sat somewhere on the system. In order for me to call an NSTask from an Obj-C app I'm working on, I need to know where it is.
Where is the cupsctl terminal executable on MacOSX?
447 Views Asked by Mike Armstrong At
1
There are 1 best solutions below
Related Questions in MACOS
- How do I customize NSOutlineView to have border color?
- Force sublime text to use PATH from the shell value
- Do executable files always open a terminal window on MacOS?
- setting OpenGL version in objective-C
- C std library don't appear to be linked in object file
- Cross compile simple standard C program on Linux for Mac
- How to generate request format for WCF web service method for Mac and iPhone
- Bundle Multiple Xamarin apps in one pkg installer
- How to Handle Command Line Prompt from a Cocoa App
- AVFoundation - Process each image separately
- CMYK NSImage get pixel data
- how i get the mac of ibeacon or BLE
- Set JAVA_HOME on Mac
- Finding active IPv6 interfaces under Mac OS (using Python)
- OSX: Why is my launchd agent running my script twice?
Related Questions in SHELL
- passing text with \n as one argument in shell
- Delete the extra space after special character in all the lines of text file
- Calling a python function with options from shell script
- bc: prevent "divide by zero" runtime error on multiple operations
- schedule and automate sqoop import/export tasks
- How can launch an external process from java and still be able to interact with this process?
- Linux find files where mtime and ctime are not equal
- Find all files contained into directory named
- Quick way to remove all folders titled CVS in a directory and it's subdirectories?
- shell process not exiting on `exit` inside `$()`
- How to set environment variables with a forward slash in the key
- System 'bash -ic' stuck when I hit ctrl+c
- bash functions returns "command not found"
- Why does pattern "*.so?(.*)" produce a syntax error in a script but not on command line?
- retrieve plaintext password from file using bash command
Related Questions in UNIX
- passing text with \n as one argument in shell
- C std library don't appear to be linked in object file
- How to split a directory into parts without compressing or archiving?
- Momentjs get current GMT unix time
- Timing packets on a traffic server
- man pages for c variable types
- Blocking in pthread_join()
- PWX-00001 Error opening repository "dtlmsg.txt". RCs = 268/150/2
- Unix c program to calculate pi using threads
- How to perform parallel processes for different groups in a folder?
- Set aliases globally for all users
- wmic csproduct get UUID equivalent for Unix and Mac?
- Send alert for 80% threshold comparing two values from Disk partition
- Unix - Tail Utility would open the file or not
- Redirect Outward of unix os commands to html page
Related Questions in FIND
- Multiple commands with find and xargs, also accounting for special characters
- Find all files contained into directory named
- How to find strings between two specified texts
- Cakephp Find all WHERE in two categories
- how to ignore directory in find by full path
- Using Bash, how do I feed a file list into a 'ln -s' without using 'find'?
- find a string in text file and create bytes from The rest of the file c#
- How do I find any string Perl?
- Where is the cupsctl terminal executable on MacOSX?
- issue Find command Linux
- UnderscoreJS : filter part of string
- find and remove all closed files that are not modified in some-time
- Check if item exists in XML with AS3
- How to perform this query in mongoose?
- UNIX Command Line - How to "find" directories using embedded wildcard
Related Questions in CUPS
- How to get a response of file printing job to user from printer using CUPS in linux
- Where is the cupsctl terminal executable on MacOSX?
- how to print a text/plain document in CUPS printer without using raw option
- How to make PHP wait until PDF is created for printed?
- Printing from inside a docker container
- postscript file is not collating when cups copies is set
- Perform print operation on cups using Node.js
- Php exec can't print using cups
- Zebra Cups Driver paper size don't change
- Getting available printer trays with PyCups
- cups filter - need to allow "others" read permission
- CUPS send multiple jobs to IPP printer
- bundle install Ruby cups gem fails on OSX Mavericks
- Fatal Error: Call to undefined function _()
- Multiple Threads Swing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Use the UNIX find command to search your entire disk starting at the root
e.g.
find / -name 'cupsctl'Shouldn't actually take all that long assuming an average sized SSD. A couple of seconds on my Mac
or, as it's OS X, if you have spotlight indexes you could use mdfind
mdfind -name 'cupsctl'which returns instantly with a few results, most of which are Safari history for this page :-)