Thursday, March 20, 2025
HomeiOS DevelopmentExecuting command-line instantly from Xcode — Erica Sadun

Executing command-line instantly from Xcode — Erica Sadun

[ad_1]

I obtained pulled into a type of conversations the place I find yourself saying, “High-quality, I’ll put up a put up about it” and that is the put up. Sure, you can check and run command-line apps instantly from Xcode however I just about by no means do. It’s a ache with few advantages. That stated, right here’s the way you do it.

Arguments

Let’s say you want arguments. Open your scheme (⌘<) and choose the Run > Arguments tab. Add the arguments you wish to move on launch one after the other. Double-click to edit any argument:

The arguments are vended byCommandLine.arguments. Both rely the array or use CommandLine.argc to learn the way many arguments you’re coping with.

print(CommandLine.arguments)
print(CommandLine.argc)

Counter-intuitively, Xcode doesn’t routinely quote the arguments for you. This produces 5 arguments, not three, or six should you embody the command itself:

["/Users/ericasadun/Library/Developer/Xcode/DerivedData/Test-gwehknnihlcsiucsovtbnlrdtfun/Build/Products/Debug/Test", "first", "second", "third", "fourth", "fifth"]
6

And what do you anticipate from the next?

You get this should you run instantly in Xcode’s console:

["/Users/ericasadun/Library/Developer/Xcode/DerivedData/Test-gwehknnihlcsiucsovtbnlrdtfun/Build/Products/Debug/Test", "first", "several items at once", "third"]
4
Program ended with exit code: 0

However should you set your code to execute utilizing Terminal:

Launching: '/Customers/ericasadun/Library/Developer/Xcode/DerivedData/Take a look at-gwehknnihlcsiucsovtbnlrdtfun/Construct/Merchandise/Debug/Take a look at'
Working listing: '/Customers/ericasadun/Library/Developer/Xcode/DerivedData/Take a look at-gwehknnihlcsiucsovtbnlrdtfun/Construct/Merchandise/Debug'
3 arguments:
argv[0] = '/Customers/ericasadun/Library/Developer/Xcode/DerivedData/Take a look at-gwehknnihlcsiucsovtbnlrdtfun/Construct/Merchandise/Debug/Take a look at'
argv[1] = 'first'
argv[2] = 'a number of'
["/Users/ericasadun/Library/Developer/Xcode/DerivedData/Test-gwehknnihlcsiucsovtbnlrdtfun/Build/Products/Debug/Test", "first", "several"]
3

Xcode’s Loopy Terminal Possibility

In the event you’re working something with direct key enter (utilizing POSIX termios/uncooked mode) or curses, working within the console doesn’t work. So Xcode gives a method to run these utilities within the terminal. Go to Run > Choices and scroll all the best way down.

This characteristic is buggy as hell, produces ridiculous quantities of extra textual content (see this), can take a big time to launch, and much more time for Xcode to understand the method has completed. It’s unimaginable to make use of with paths that use areas (“warning: working listing does not exist: '/Volumes/Kiku/Xcode/Derived'“).

I don’t prefer it. I don’t use it. Nevertheless it exists.

Sane Command-Line Execution

Until you’re coping with issues like automation and such, you may check out your compiled command-line apps by dragging your executable from the Merchandise group onto the terminal. This locations the trail to your construct on the immediate. Kind out your arguments and press return:

Nonetheless, I favor to make use of a Copy File construct part. Choose your Goal > Construct Phases, click on plus (+) and add the executable. (I exploit absolute path and disable “solely when putting in”.) This allows you to set up on to  commonplace places like /usr/native/bin or ~/bin, or should you don’t wish to place it there till it’s steady and prepared for deployment, you should utilize a improvement folder:

Assuming your vacation spot is in your shell’s path, begin a brand new shell for the executable to be picked up the primary time. After that, you may compile and run as you want.

[ad_2]

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments