xed(1) BSD General Commands Manual xed(1)NAME
xed -- Xcode text editor invocation tool.
SYNOPSIS
xed [-xcwrbhv] [-l lineno] [file ...]
DESCRIPTION
The xed tool launches the Xcode application and opens the given documents, or opens a new untitled document, optionally with the contents of
standard in.
OPTIONS
The options for xed are similar to those for the command-line utiltiies for other text editors:
-x, --launch
Launches Xcode opening a new empty unsaved file, without reading from standard input.
-c, --create
Creates any files in the file list that do not already exist. If used without --launch, standard input will be read and piped to
the last file created.
-w, --wait
Wait for the files to be closed before exiting. xed will idle in a run loop waiting for a notification from Xcode when each file is
closed, and will only terminate when all are closed. This is useful when invoking it from a script.
-l, --line <number>
Selects the given line in the last file opened.
-b, --background
Opens Xcode without activating it; the process that invoked xed remains in front.
-h, --help
Prints a brief summary of usage.
-v, --version
Prints the version number of xed
[file...]
A list of file paths. Existing files will be opened; nonexistent files will be created only if the --create flag is passed. If no
files are passed, then standard input will be read and piped into a new untitled dcument (unless --launch is passed). If --create
and at least one nonexistent file name is passed, the last nonexistent file will be created, filled with the standard input, and
opened.
HISTORY
xed was introduced in Mac OS X 10.5 with Xcode 3.0.
Mac OS June 1, 2019 Mac OS
Check Out this Related Man Page
otest(1) BSD General Commands Manual otest(1)NAME
otest -- SenTestingKit, OCUnit.
SYNOPSIS
otest [-SenTest Self | All | None | <TestCaseClassName/testMethodName>] path
DESCRIPTION
otest runs the unit tests found in the bundle given at path.
ARGUMENTS -SenTest value This flag denotes the scope of the unit test to be run. Possible values are Self, All, None and <TestCaseClassName/test-
MethodName>. The default value is Self.
path Path to the bundle that contains the unit tests.
OBJECTIVE-C GARBAGE COLLECTION
otest is built with support for Objective-C garbage collection. Due to the "whole process" nature of Objective-C garbage collection, invok-
ing otest from the command line or an IDE or debugger will run otest with garbage collection enabled. Doing so requires that the bundle con-
taining the unit tests also be built with support for garbage collection.
To avoid this requirement and disable garbage collection, run otest in an environment with the OBJC_DISABLE_GC environment variable set to
YES.
ENVIRONMENT
OBJC_DISABLE_GC Set to YES to disable Objective-C garbage collection for otest when running test bundles that do not use it.
FILES
/Developer/Tools/RunTargetUnitTests A script that calls otest with the correct arguments for use with Xcode.
SEE ALSO RunTargetUnitTests(1), otest(1)Xcode June 2, 2019 Xcode
as of our requiremnt some x no of files will be created from a third party tool ,out of them one or two files will be empty i.e size is 0. so i want to remove those files which are empty.
naming of the files which are created will be like this
abc_.txt 0 size
abc_1.txt 4000 size
abc_2.txt... (1 Reply)
I've downloaded Xcode and i've done :
which "gcc"
which "ggc-4.0"
and which "c99"
all were found in /usr/bin/
however with the script
#include <stdio.h>
main()
{
printf("hello, world\n");
}
and when I, in command line use the command while in my home dir:
gcc cprog.c -o cprog (4 Replies)
I have av script that loops through some statistic files to create a report. We would like to only loop through non-empty files as these files create an empty report-line.
I have figured out how to find the non-empty files, but not how to loop through only those files.
Here is the code that finds... (4 Replies)
Hello everyone. I was previously using MacPorts 1.8 on Mac OS 10.5.8 without any problems and everything was working well.
I recently upgraded to Xcode 3.2 and Mac OS 10.6, since then my MacPorts installation has not been working at all. I deleted it and then reinstalled the .dmg from the... (1 Reply)
Hello everyone. I was previously using MacPorts 1.8 on Mac OS 10.5.8 without any problems and everything was working well.
I recently upgraded to Xcode 3.2 and Mac OS 10.6, since then my MacPorts installation has not been working at all. I deleted it and then reinstalled the .dmg from the... (2 Replies)
Hello,
There is pipe chain and I want concacenate piped data with some variable:
balh blah| ... $var1
What command I should use instead ... to concatenate piped output with $var1. I think I coud solve this using temp var - but could it be done in one line like sample above ?
thanks... (4 Replies)
I am using my teminal on Mac to run some files with gmake, (I used unix before,but now I am trying to run it frm my mac) and I get the error message:
-bash: gmake: command not found
Any idea what the problem might be?
Thanks! (10 Replies)
Hi,
I am somewhat new to Perl and currently checking it out. I have a problem testing, if there is nothing being piped in to that script.
I am reading input from STDIN this way:
while( defined($line = <STDIN>) ) {
chomp($line);
if( $line =~ m/($ARGV)/g ) {
... (7 Replies)
Hey everyone, I'm new to sed and I need to create a script for inserting one line of code at the beginning of every method in a Xcode project (over 6,000 methods). Each method Structure is
(+ or -) (Various declarations-- could span multiple lines) ({)
I've tried for days, any guidance would be... (2 Replies)
Is it possible to replace a line of text within a file while it's closed with a single command or a script? Please show me an example or point me to a webpage that shows an example. The file has this line of text:
LoginGraceTime 100
I want to replace it with the following:
... (2 Replies)
Mac users...
I updated this MBP from OSX 10.12.1 to the brand new OSX 10.12.2 two days ago.
A week ago I installed the Xcode suite.
Now the QT shell audio capture in another recent thread is broken when exporting a file.
It gives an error in a window, paraphrasing, The action is not... (4 Replies)
This is the oddest thing I've seen in any text editor in the three OSes I've used since buying my first home computer in 1993.
Short version: "where's the switch?"
the xed GUI (version 1.0.6) appears to have no Option to keep it from creating backups (~-marked files) if a text or ASCII file... (2 Replies)