mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
# xed
|
|
# Opens files for editing in XCode.
|
|
|
|
# Open file in XCode
|
|
xed ${filename}
|
|
|
|
# Open file(s) in XCode, create if it doesn't exist:
|
|
xed -c ${filename}
|
|
|
|
# Open a file in XCode and jump to line number 75:
|
|
xed -l 75 ${filename}
|
|
|
|
|