2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/xed
2017-06-04 14:04:43 +00:00

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}