macOCR
Get any text on your screen into your clipboard.
File Explorer
- build.yml
- codespell.yml
- main.swift
- IDEWorkspaceChecks.plist
- UserInterfaceState.xcuserstate
- contents.xcworkspacedata
- xcschememanagement.plist
- project.pbxproj
- IDEWorkspaceChecks.plist
- UserInterfaceState.xcuserstate
- contents.xcworkspacedata
- ByteString.swift
- CollectionAlgorithms.swift
- CollectionExtensions+only.swift
- Condition.swift
- DictionaryExtensions.swift
- FileSystem.swift
- Path.swift
- Thread.swift
- CollectionExtensions+split.swift
- StringExtensions.swift
- URL.swift
- ArgumentParser.swift
- OutputByteStream.swift
- LICENSE
- README.md
- ArgumentParserKit-umbrella.h
- ArgumentParserKit.modulemap
- ScreenCapture-umbrella.h
- ScreenCapture.modulemap
- ArgumentParserKit.xcscheme
- Pods-ocr.xcscheme
- ScreenCapture.xcscheme
- xcschememanagement.plist
- project.pbxproj
- ScreenCapture.swift
- ScreenRecorder.swift
- LICENSE
- README.md
- ArgumentParserKit-dummy.m
- ArgumentParserKit-prefix.pch
- ArgumentParserKit-umbrella.h
- ArgumentParserKit.debug.xcconfig
- ArgumentParserKit.modulemap
- ArgumentParserKit.release.xcconfig
- Pods-ocr-acknowledgements.markdown
- Pods-ocr-acknowledgements.plist
- Pods-ocr-dummy.m
- Pods-ocr-umbrella.h
- Pods-ocr.debug.xcconfig
- Pods-ocr.modulemap
- Pods-ocr.release.xcconfig
- ScreenCapture-dummy.m
- ScreenCapture-prefix.pch
- ScreenCapture-umbrella.h
- ScreenCapture.debug.xcconfig
- ScreenCapture.modulemap
- ScreenCapture.release.xcconfig
- Manifest.lock
- .codespellrc
- .gitignore
- Podfile
- Podfile.lock
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
brew upgrade
View Details ▼
brew upgrade
Upgrade outdated formulae and casks.
brew upgrade
Upgrade all outdated casks and formulae:
brew upgrade {{formula|cask}}
Upgrade a specific formula/cask:
brew upgrade {{[-n|--dry-run]}}
Print what would be upgraded, but don't actually upgrade anything:
done
View Details ▼
done
This shell keyword is used with `for`, `while`, `select`, and `until` to mark the end of a loop.
tldr for
View documentation for the `for` keyword:
tldr while
View documentation for the `while` keyword:
tldr select
View documentation for the `select` keyword:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
x86_64
View Details ▼
x86_64
This command is an alias of `setarch x86_64`.
tldr setarch
View documentation for the original command:
pod
View Details ▼
pod
Dependency manager for Swift and Objective-C Cocoa projects.
pod init
Create a Podfile for the current project with the default contents:
pod install
Download and install all pods defined in the Podfile (that haven't been installed before):
pod list
List all available pods:
xattr
View Details ▼
xattr
Utility to work with extended filesystem attributes.
xattr -l {{file}}
List key:value extended attributes for a given file:
xattr -w {{attribute_key}} {{attribute_value}} {{file}}
Write an attribute for a given file:
xattr -d {{com.apple.quarantine}} {{file}}
Delete an attribute from a given file:
xcodebuild
View Details ▼
xcodebuild
Build Xcode projects.
xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}
Build workspace:
xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}
Build project:
xcodebuild -showsdks
Show SDKs:
