HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

xed — Open files for editing in Xcode. More information: <https://keith.github.io/xcode-man-pages/xed.1.ht

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfileseditingxedcliopenxcodefor
macos

Problem

How to use the xed command: Open files for editing in Xcode. More information: <https://keith.github.io/xcode-man-pages/xed.1.html>.

Solution

xed — Open files for editing in Xcode. More information: <https://keith.github.io/xcode-man-pages/xed.1.html>.

Open file in Xcode:
xed {{path/to/file1 path/to/file2 ...}}


Open file(s) in Xcode, create if it doesn't exist:
xed --create {{path/to/file1 path/to/file2 ...}}


Open a file in Xcode and jump to line number 75:
xed --line 75 {{path/to/file}}

Code Snippets

Open file in Xcode

xed {{path/to/file1 path/to/file2 ...}}

Open file(s) in Xcode, create if it doesn't exist

xed --create {{path/to/file1 path/to/file2 ...}}

Open a file in Xcode and jump to line number 75

xed --line 75 {{path/to/file}}

Context

tldr-pages: osx/xed

Revisions (0)

No revisions yet.