* *f <what>* →Recursively find file in current directory.
* *c* →Trim new lines and copy text to clipboard.
## File System
### extract <filepath> [directory]
Extract archives of various types.
### emptytrash
Empty the Trash on all mounted volumes and the main HDD. Also, clear Apple’s System Logs to improve shell startup speed.
### show / hide
Show/hide hidden files in Finder.
## Text
### dos2unix <filepath>
Convert file to Unix line endings.
### crlf [--force]
Find files with Windows line endings (and convert them to Unix when `--force` key given).
### escape <characters>
Escape UTF-8 characters into their 3-byte format: `£` → `\xC2\xA3`.
### codepoint <character>
Get a character’s Unicode code point: `£` → `\x00A3`.
## Network
### GET / HEAD / POST / PUT / DELETE / TRACE / OPTIONS <URL>
Make HTTP request using respective method.
### gz <filepath>
Get gzipped file size.
### httpcompression <URL>
Test if HTTP compression (RFC 2616 + SDCH) is enabled for a given URL. Send a fake UA string for sites that sniff it instead of using the Accept-Encoding header.