Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

12
osx/aa Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# aa
> This command is an alias of `yaa`.
- View documentation for the original command:
`tldr yaa`

34
osx/afinfo Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# afinfo
> Audio file metadata parser for OS X.
> Built-in command of OS X.
> More information: <https://keith.github.io/xcode-man-pages/afinfo.1.html>.
- Display info of a given audio file:
`afinfo {{path/to/file}}`
- Print a one line description of the audio file:
`afinfo --brief {{path/to/file}}`
- Print metadata info and contents of the audio file's InfoDictionary:
`afinfo --info {{path/to/file}}`
- Print output in XML format:
`afinfo --xml {{path/to/file}}`
- Print warnings for the audio file if any:
`afinfo --warnings {{path/to/file}}`
- Display help:
`afinfo --help`

25
osx/afplay Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# afplay
> Command-line audio player.
> More information: <https://keith.github.io/xcode-man-pages/afplay.1.html>.
- Play a sound file (waits until playback ends):
`afplay {{path/to/file}}`
- Play a sound file at 2x speed (playback rate):
`afplay --rate {{2}} {{path/to/file}}`
- Play a sound file at half speed:
`afplay --rate {{0.5}} {{path/to/file}}`
- Play the first N seconds of a sound file:
`afplay --time {{seconds}} {{path/to/file}}`

29
osx/aiac Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# aiac
> Use OpenAI to generate IaC configurations, utilities, queries and more.
> More information: <https://github.com/gofireflyio/aiac>.
- Generate Terraform for Azure storage account:
`aiac get terraform {{for an azure storage account}}`
- Generate a Dockerfile for nginx:
`aiac get dockerfile {{for a secured nginx}}`
- Generate GitHub action that applies Terraform:
`aiac get github action {{that plans and applies terraform}}`
- Generate a port scanner in Python:
`aiac get python {{code that scans all open ports in my network}}`
- Generate a MongoDB query:
`aiac get mongo {{query that aggregates all documents by created date}}`

25
osx/airport Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# airport
> Wireless network configuration utility.
> More information: <https://keith.github.io/xcode-man-pages/airport.1.html>.
- Show current wireless status information:
`airport --getinfo`
- Sniff wireless traffic on channel 1:
`airport sniff {{1}}`
- Scan for available wireless networks:
`airport --scan`
- Disassociate from current airport network:
`sudo airport --disassociate`

14
osx/airportd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# airportd
> Manages wireless interfaces.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/airportd.8.html>.
- Start the daemon:
`airportd`

21
osx/apachectl Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# apachectl
> Apache HTTP Server control interface for macOS.
> More information: <https://keith.github.io/xcode-man-pages/apachectl.8.html>.
- Start the `org.apache.httpd` launchd job:
`apachectl start`
- Stop the launchd job:
`apachectl stop`
- Stop, then start launchd job:
`apachectl restart`

14
osx/applecamerad Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# applecamerad
> Camera manager.
> It should not be invoked manually.
> More information: <https://www.theiphonewiki.com/wiki/Services>.
- Start the daemon:
`applecamerad`

14
osx/appsleepd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# appsleepd
> Provides app sleep services.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/appsleepd.8.html>.
- Start the daemon:
`appsleepd`

22
osx/arch Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# arch
> Display the name of the system architecture, or run a command under a different architecture.
> See also: `uname`.
> More information: <https://keith.github.io/xcode-man-pages/arch.1.html>.
- Display the system's architecture:
`arch`
- Run a command using x86_64:
`arch -x86_64 "{{command}}"`
- Run a command using arm:
`arch -arm64 "{{command}}"`

25
osx/archey Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# archey
> Simple tool for stylishly displaying system information.
> More information: <https://github.com/joshfinnie/archey-osx>.
- Show system information:
`archey`
- Show system information without colored output:
`archey --nocolor`
- Show system information, using MacPorts instead of Homebrew:
`archey --macports`
- Show system information without IP address check:
`archey --offline`

26
osx/as Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# as
> Portable GNU assembler.
> Primarily intended to assemble output from `gcc` to be used by `ld`.
> More information: <https://keith.github.io/xcode-man-pages/as.1.html>.
- Assemble a file, writing the output to `a.out`:
`as {{path/to/file.s}}`
- Assemble the output to a given file:
`as {{path/to/file.s}} -o {{path/to/output_file.o}}`
- Generate output faster by skipping whitespace and comment preprocessing. (Should only be used for trusted compilers):
`as -f {{path/to/file.s}}`
- Include a given path to the list of directories to search for files specified in `.include` directives:
`as -I {{path/to/directory}} {{path/to/file.s}}`

26
osx/asr Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# asr
> Restore (copy) a disk image onto a volume.
> The command name stands for Apple Software Restore.
> More information: <https://keith.github.io/xcode-man-pages/asr.8.html>.
- Restore a disk image to a target volume:
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}}`
- Erase the target volume before restoring:
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --erase`
- Skip verification after restoring:
`sudo asr restore --source {{image_file.dmg}} --target {{path/to/volume_file}} --noverify`
- Clone volumes without using an intermediate disk image:
`sudo asr restore --source {{path/to/volume_file}} --target {{path/to/volume_file}}`

14
osx/autofsd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# autofsd
> Runs `automount` on startup and network configuration change events.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/autofsd.8.html>.
- Start the daemon:
`autofsd`

18
osx/automountd Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# automountd
> An automatic mount/unmount daemon for `autofs`. Started on demand by `launchd`.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/automountd.8.html>.
- Start the daemon:
`automountd`
- Log more details to `syslog`:
`automountd -v`

17
osx/auvaltool Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# auvaltool
> AudioUnit validation tool for Mac.
> More information: <https://keith.github.io/xcode-man-pages/auvaltool.1.html>.
- List all [a]vailable AudioUnits of any type:
`auvaltool -a`
- List all [a]vailable AudioUnits of any type with their [l]ocation:
`auvaltool -al`

14
osx/avbdeviced Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# avbdeviced
> A service for managing Audio Video Bridging (AVB) devices.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/avbdeviced.1.html>.
- Start the daemon:
`avbdeviced`

14
osx/backupd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# backupd
> Creates Time Machine backups and manages its backup history.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/backupd.8.html>.
- Start the daemon:
`backupd`

25
osx/base64 Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# base64
> Encode and decode using Base64 representation.
> More information: <https://keith.github.io/xcode-man-pages/base64.1.html>.
- Encode a file:
`base64 --input={{plain_file}}`
- Decode a file:
`base64 --decode --input={{base64_file}}`
- Encode from `stdin`:
`echo -n "{{plain_text}}" | base64`
- Decode from `stdin`:
`echo -n {{base64_text}} | base64 --decode`

34
osx/bc Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# bc
> An arbitrary precision calculator language.
> See also: `dc`.
> More information: <https://keith.github.io/xcode-man-pages/bc.1.html>.
- Start an interactive session:
`bc`
- Start an interactive session with the standard math library enabled:
`bc --mathlib`
- Calculate an expression:
`bc --expression='{{5 / 3}}'`
- Execute a script:
`bc {{path/to/script.bc}}`
- Calculate an expression with the specified scale:
`bc --expression='scale = {{10}}; {{5 / 3}}'`
- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`:
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`

14
osx/biomesyncd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# biomesyncd
> Synchronizes data between devices registered to the same account.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/biomesyncd.8.html>.
- Start the daemon:
`biomesyncd`

14
osx/biometrickitd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# biometrickitd
> Provides support for biometric operations.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/biometrickitd.8.html>.
- Start the daemon:
`biometrickitd`

14
osx/bird Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# bird
> This supports the syncing of iCloud and iCloud Drive.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/bird.8.html>.
- Start the daemon:
`bird`

25
osx/bless Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# bless
> Set volume boot capability and startup disk options.
> More information: <https://keith.github.io/xcode-man-pages/bless.8.html>.
- Bless a volume with only Mac OS X or Darwin, and create the BootX and `boot.efi` files as needed:
`bless --folder {{/Volumes/Mac OS X/System/Library/CoreServices}} --bootinfo --bootefi`
- Set a volume containing either Mac OS 9 and Mac OS X to be the active volume:
`bless --mount {{/Volumes/Mac OS}} --setBoot`
- Set the system to NetBoot and broadcast for an available server:
`bless --netboot --server {{bsdp://255.255.255.255}}`
- Gather information about the currently selected volume (as determined by the firmware), suitable for piping to a program capable of parsing Property Lists:
`bless --info --plist`

14
osx/bnepd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# bnepd
> A service that handles all Bluetooth network connections.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/bnepd.8.html>.
- Start the daemon:
`bnepd`

21
osx/brightness Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# brightness
> Get and set the brightness level of all internal and certain external displays.
> More information: <https://github.com/nriley/brightness>.
- Show current brightness:
`brightness -l`
- Set a specific brightness:
`brightness {{0..1}}`
- Set the brightness to 50%:
`brightness {{0.5}}`

29
osx/caffeinate Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# caffeinate
> Prevent macOS from sleeping.
> More information: <https://keith.github.io/xcode-man-pages/caffeinate.8.html>.
- Prevent from sleeping for 1 hour (3600 seconds):
`caffeinate -u -t {{3600}}`
- Prevent from sleeping until a command completes:
`caffeinate -s "{{command}}"`
- Prevent from sleeping until a process with the specified PID completes:
`caffeinate -w {{pid}}`
- Prevent from sleeping (use `Ctrl + C` to exit):
`caffeinate -i`
- Prevent disk from sleeping (use `Ctrl + C` to exit):
`caffeinate -m`

37
osx/cal Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cal
> Prints calendar information.
> More information: <https://keith.github.io/xcode-man-pages/cal.1.html>.
- Display a calendar for the current month:
`cal`
- Display previous, current and next month:
`cal -3`
- Display a calendar for a specific month (1-12 or name):
`cal -m {{month}}`
- Display a calendar for the current year:
`cal -y`
- Display a calendar for a specific year (4 digits):
`cal {{year}}`
- Display a calendar for a specific month and year:
`cal {{month}} {{year}}`
- Display date of Easter (Western Christian churches) in a given year:
`ncal -e {{year}}`

29
osx/carthage Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# carthage
> A dependency management tool for Cocoa applications.
> More information: <https://github.com/Carthage/Carthage>.
- Download the latest version of all dependencies mentioned in Cartfile, and build them:
`carthage update`
- Update dependencies, but only build for iOS:
`carthage update --platform ios`
- Update dependencies, but don't build any of them:
`carthage update --no-build`
- Download and rebuild the current version of dependencies (without updating them):
`carthage bootstrap`
- Rebuild a specific dependency:
`carthage build {{dependency}}`

37
osx/cat Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cat
> Print and concatenate files.
> More information: <https://keith.github.io/xcode-man-pages/cat.1.html>.
- Print the contents of a file to `stdout`:
`cat {{path/to/file}}`
- Concatenate several files into an output file:
`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}`
- Append several files to an output file:
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
- Copy the contents of a file into an output file without buffering:
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
- Write `stdin` to a file:
`cat - > {{path/to/file}}`
- Number all output lines:
`cat -n {{path/to/file}}`
- Display non-printable and whitespace characters (with `M-` prefix if non-ASCII):
`cat -v -t -e {{path/to/file}}`

14
osx/cfprefsd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cfprefsd
> Provides preferences services (`CFPreferences`, `NSUserDefaults`).
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/cfprefsd.8.html>.
- Start the daemon:
`cfprefsd`

25
osx/chflags Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# chflags
> Change file or directory flags.
> More information: <https://keith.github.io/xcode-man-pages/chflags.1.html>.
- Set the `hidden` flag for a file:
`chflags {{hidden}} {{path/to/file}}`
- Unset the `hidden` flag for a file:
`chflags {{nohidden}} {{path/to/file}}`
- Recursively set the `uchg` flag for a directory:
`chflags -R {{uchg}} {{path/to/directory}}`
- Recursively unset the `uchg` flag for a directory:
`chflags -R {{nouchg}} {{path/to/directory}}`

31
osx/chpass Normal file
View File

@@ -0,0 +1,31 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# chpass
> Add or change user database information, including login shell and password.
> Note: it's not possible to change the user's password on Open Directory systems, use `passwd` instead.
> See also: `passwd`.
> More information: <https://man.freebsd.org/cgi/man.cgi?chpass>.
- Add or change user database information for the current user interactively:
`su -c chpass`
- Set a specific login [s]hell for the current user:
`chpass -s {{path/to/shell}}`
- Set a login [s]hell for a specific user:
`chpass -s {{path/to/shell}} {{username}}`
- Edit the user record on the directory node at the given [l]ocation:
`chpass -l {{location}} -s {{path/to/shell}} {{username}}`
- Use the given [u]sername when authenticating to the directory node containing the user:
`chpass -u {{authname}} -s {{path/to/shell}} {{username}}`

14
osx/cloudd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cloudd
> Backs the CloudKit feature.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/cloudd.8.html>.
- Start the daemon:
`cloudd`

14
osx/cloudphotod Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cloudphotod
> This synchronizes iCloud Photos.
> It should not be invoked manually.
> More information: <https://www.manpagez.com/man/8/cloudphotosd/>.
- Start the daemon:
`cloudphotod`

17
osx/codesign Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# codesign
> Create and manipulate code signatures for macOS.
> More information: <https://keith.github.io/xcode-man-pages/codesign.1.html>.
- Sign an application with a certificate:
`codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}`
- Verify the certificate of an application:
`codesign --verify {{path/to/application_file.app}}`

14
osx/coreaudiod Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# coreaudiod
> Service for Core Audio, Apple's audio system.
> It should not be invoked manually.
> More information: <https://developer.apple.com/library/archive/documentation/MusicAudio/Conceptual/CoreAudioOverview/WhatisCoreAudio/WhatisCoreAudio.html>.
- Start the daemon:
`coreaudiod`

14
osx/coreautha Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# coreautha
> A system agent providing the `LocalAuthentication` framework.
> It should not be invoked manually. See also: `coreauthd`.
> More information: <https://keith.github.io/xcode-man-pages/coreautha.8.html>.
- Start the agent:
`coreautha`

14
osx/coreauthd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# coreauthd
> A system daemon providing the `LocalAuthentication` framework.
> It should not be invoked manually. See also: `coreautha`.
> More information: <https://keith.github.io/xcode-man-pages/coreauthd.8.html>.
- Start the agent:
`coreauthd`

14
osx/corebrightnessd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# corebrightnessd
> Manages Night Shift.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/corebrightnessd.8.html>.
- Start the daemon:
`corebrightnessd`

14
osx/coredatad Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# coredatad
> Schedules CloudKit operations for clients of NSPersistentCloudKitContainer.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/coredatad.8.html>.
- Start the daemon:
`coredatad`

29
osx/cot Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cot
> The Plain-Text Editor for macOS.
> More information: <https://coteditor.com/>.
- Start CotEditor:
`cot`
- Open specific files:
`cot {{path/to/file1 path/to/file2 ...}}`
- Open a new blank document:
`cot --new`
- Open a specific file and block the terminal until it is closed:
`cot --wait {{path/to/file}}`
- Open a specific file with the cursor at a specific line and column:
`cot --line {{1}} --column {{80}} {{path/to/file}}`

33
osx/csrutil Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# csrutil
> Manage the System Integrity Protection configuration.
> More information: <https://keith.github.io/xcode-man-pages/csrutil.8.html>.
- Display the System Integrity Protection status:
`csrutil status`
- Disable the System Integrity Protection:
`csrutil disable`
- Enable the System Integrity Protection:
`csrutil enable`
- Display the list of allowed NetBoot sources:
`csrutil netboot list`
- Add an IPv4 address to the list of allowed NetBoot sources:
`csrutil netboot add {{ip}}`
- Reset the System Integrity Protection status and clear the NetBoot list:
`csrutil clear`

21
osx/csshx Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# csshX
> Cluster SSH tool for macOS.
> More information: <https://github.com/brockgr/csshx>.
- Connect to multiple hosts:
`csshX {{hostname1}} {{hostname2}}`
- Connect to multiple hosts with a given SSH key:
`csshX {{user@hostname1}} {{user@hostname2}} --ssh_args "-i {{path/to/key_file.pem}}"`
- Connect to a pre-defined cluster from `/etc/clusters`:
`csshX cluster1`

14
osx/ctkd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# ctkd
> SmartCard daemon.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/ctkd.8.html>.
- Start the daemon:
`ctkd`

21
osx/cut Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# cut
> Cut out fields from `stdin` or files.
> More information: <https://keith.github.io/xcode-man-pages/cut.1.html>.
- Print a specific character/field range of each line:
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
- Print a field range of each line with a specific delimiter:
`{{command}} | cut -d "{{,}}" -f {{1}}`
- Print a character range of each line of a specific file:
`cut -c {{1}} {{path/to/file}}`

25
osx/dark-mode Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dark-mode
> Control macOS dark mode.
> More information: <https://github.com/sindresorhus/dark-mode>.
- Toggle dark mode (turn it on if it's currently off, off if it's currently on):
`dark-mode`
- Turn dark mode on:
`dark-mode on`
- Turn dark mode off:
`dark-mode off`
- Check if dark mode is on:
`dark-mode status`

25
osx/date Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# date
> Set or display the system date.
> More information: <https://keith.github.io/xcode-man-pages/date.1.html>.
- Display the current date using the default locale's format:
`date +%c`
- Display the current date in UTC and ISO 8601 format:
`date -u +%Y-%m-%dT%H:%M:%SZ`
- Display the current date as a Unix timestamp (seconds since the Unix epoch):
`date +%s`
- Display a specific date (represented as a Unix timestamp) using the default format:
`date -r 1473305798`

37
osx/dd Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dd
> Convert and copy a file.
> More information: <https://keith.github.io/xcode-man-pages/dd.1.html>.
- Make a bootable USB drive from an isohybrid file (such like `archlinux-xxx.iso`) and show the progress:
`dd if={{path/to/file.iso}} of={{/dev/usb_device}} status=progress`
- Clone a drive to another drive with 4 MB block, ignore error and show the progress:
`dd if={{/dev/source_device}} of={{/dev/dest_device}} bs={{4m}} conv={{noerror}} status=progress`
- Generate a file of 100 random bytes by using kernel random driver:
`dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}`
- Benchmark the write performance of a disk:
`dd if=/dev/zero of={{path/to/1GB_file}} bs={{1024}} count={{1000000}}`
- Generate a system backup into an IMG file and show the progress:
`dd if=/dev/{{drive_device}} of={{path/to/file.img}} status=progress`
- Restore a drive from an IMG file and show the progress:
`dd if={{path/to/file.img}} of={{/dev/drive_device}} status=progress`
- Check the progress of an ongoing dd operation (run this command from another shell):
`kill -USR1 $(pgrep ^dd)`

33
osx/defaults Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# defaults
> Read and write macOS user configuration for applications.
> More information: <https://keith.github.io/xcode-man-pages/defaults.1.html>.
- Read system defaults for an application option:
`defaults read "{{application}}" "{{option}}"`
- Read default values for an application option:
`defaults read -app "{{application}}" "{{option}}"`
- Search for a keyword in domain names, keys, and values:
`defaults find "{{keyword}}"`
- Write the default value of an application option:
`defaults write "{{application}}" "{{option}}" {{-type}} {{value}}`
- Speed up Mission Control animations:
`defaults write com.apple.Dock expose-animation-duration -float 0.1`
- Delete all defaults of an application:
`defaults delete "{{application}}"`

14
osx/deleted Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# deleted
> Keeps track of purgeable space and asks clients to purge when space is low.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/deleted.8.html>.
- Start the daemon:
`deleted`

37
osx/df Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# df
> Display an overview of the filesystem disk space usage.
> More information: <https://keith.github.io/xcode-man-pages/df.1.html>.
- Display all filesystems and their disk usage using 512-byte units:
`df`
- Use [h]uman-readable units (based on powers of 1024) and display a grand total:
`df -h -c`
- Use [H]uman-readable units (based on powers of 1000):
`df -{{-si|H}}`
- Display the filesystem and its disk usage containing the given file or directory:
`df {{path/to/file_or_directory}}`
- Include statistics on the number of free and used [i]nodes including the filesystem t[Y]pes:
`df -iY`
- Use 1024-byte units when writing space figures:
`df -k`
- Display information in a [P]ortable way:
`df -P`

18
osx/dhcp6d Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dhcp6d
> Stateless DHCPv6 server. See also: `InternetSharing`.
> It should not be invoked manually.
> More information: <https://www.manpagez.com/man/8/dhcp6d/>.
- Start the daemon:
`dhcp6d`
- Use a custom configuration:
`dhcp6d {{path/to/config_file}}`

25
osx/diskutil Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# diskutil
> Utility to manage local disks and volumes.
> More information: <https://keith.github.io/xcode-man-pages/diskutil.8.html>.
- List all currently available disks, partitions and mounted volumes:
`diskutil list`
- Repair the filesystem data structures of a volume:
`diskutil repairVolume {{/dev/disk_device}}`
- Unmount a volume:
`diskutil unmountDisk {{/dev/disk_device}}`
- Eject a CD/DVD (unmount first):
`diskutil eject {{/dev/disk_device1}}`

14
osx/distnoted Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# distnoted
> Provides distributed notification services.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/distnoted.8.html>.
- Start the daemon:
`distnoted`

21
osx/ditto Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# ditto
> Copy files and directories.
> More information: <https://keith.github.io/xcode-man-pages/ditto.1.html>.
- Overwrite contents of destination directory with contents of source directory:
`ditto {{path/to/source_directory}} {{path/to/destination_directory}}`
- Print a line to the Terminal window for every file that's being copied:
`ditto -V {{path/to/source_directory}} {{path/to/destination_directory}}`
- Copy a given file or directory, while retaining the original file permissions:
`ditto -rsrc {{path/to/source_directory}} {{path/to/destination_directory}}`

21
osx/dmesg Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dmesg
> Write the kernel messages to `stdout`.
> More information: <https://keith.github.io/xcode-man-pages/dmesg.8.html>.
- Show kernel messages:
`dmesg`
- Show how much physical memory is available on this system:
`dmesg | grep -i memory`
- Show kernel messages 1 page at a time:
`dmesg | less`

37
osx/dockutil Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dockutil
> Manage macOS dock items.
> More information: <https://github.com/kcrawford/dockutil>.
- Add an application to the end of the current user's dock:
`dockutil --add {{path/to/application}}`
- Replace one application with another in the current user's dock:
`dockutil --add {{/path/to/application}} --replacing '{{dock_item_label}}'`
- Add a directory with view options and display it as a folder icon or stack:
`dockutil --add {{/path/to/directory}} --view {{grid|fan|list|auto}} --display {{folder|stack}}`
- Add a URL dock item after another item:
`dockutil --add {{vnc://example_server.local}} --label '{{Example VNC}}' --after {{dock_item_label}}`
- Remove an application from the dock given its dock label name:
`dockutil --remove '{{dock_item_label}}'`
- Add a spacer in a section after an application:
`dockutil --add '' --type {{spacer|small-spacer|flex-spacer}} --section {{apps}} --after {{dock_item_label}}`
- Remove all spacer tiles:
`dockutil --remove spacer-tiles`

33
osx/dot_clean Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dot_clean
> Merge ._* files with corresponding native files.
> More information: <https://keith.github.io/xcode-man-pages/dot_clean.1.html>.
- Merge all `._*` files recursively:
`dot_clean {{path/to/directory}}`
- Don't recursively merge all `._*` in a directory (flat merge):
`dot_clean -f {{path/to/directory}}`
- Merge and delete all `._*` files:
`dot_clean -m {{path/to/directory}}`
- Only delete `._*` files if there's a matching native file:
`dot_clean -n {{path/to/directory}}`
- Follow symlinks:
`dot_clean -s {{path/to/directory}}`
- Print verbose output:
`dot_clean -v {{path/to/directory}}`

17
osx/drutil Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# drutil
> Interact with DVD burners.
> More information: <https://keith.github.io/xcode-man-pages/drutil.1.html>.
- Eject a disk from the drive:
`drutil eject`
- Burn a directory as an ISO9660 filesystem onto a DVD. Don't verify and eject when complete:
`drutil burn -noverify -eject -iso9660`

42
osx/dtrace Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# dtrace
> A simple interface to invoke the D language compiler, retrieve buffered trace, and print traced data from the DTrace kernel facility.
> Generic front-end to DTrace facility, requiring root privileges.
> More information: <https://keith.github.io/xcode-man-pages/dtrace.1.html>.
- Set target data model for a specific architecture:
`dtrace -arch {{arch_name}}`
- Claim [a]nonymous tracing state and display the traced data:
`dtrace -a`
- Set principal trace buffer size. Supported units are `k`, `m`, `g`, or `t`:
`dtrace -b {{2g}}`
- Compile the specified D Program [s]ource file:
`dtrace -s {{D_script}}`
- Run the specified [c]ommand and exit upon its completion:
`dtrace -c {{command}}`
- Specify [f]unction name to trace or list (-l option). The corresponding argument can include any of the probe description forms like `provider:module:function`, `module:function` or `function`:
`dtrace -f {{function}}`
- Grad the specified [p]rocess ID, cache its symbol table, and exit upon completion:
`dtrace -p {{pid}}`
- Combine different options for tracing function in a process:
`dtrace -a -b {{buffer_size}} -f {{function}} -p {{pid}}`

33
osx/du Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# du
> Disk usage: estimate and summarize file and directory space usage.
> More information: <https://keith.github.io/xcode-man-pages/du.1.html>.
- List the sizes of a directory and any subdirectories, in the given unit (KiB/MiB/GiB):
`du -{{k|m|g}} {{path/to/directory}}`
- List the sizes of a directory and any subdirectories, in human-readable form (i.e. auto-selecting the appropriate unit for each size):
`du -h {{path/to/directory}}`
- Show the size of a single directory, in human-readable units:
`du -sh {{path/to/directory}}`
- List the human-readable sizes of a directory and of all the files and directories within it:
`du -ah {{path/to/directory}}`
- List the human-readable sizes of a directory and any subdirectories, up to N levels deep:
`du -h -d {{2}} {{path/to/directory}}`
- List the human-readable size of all `.jpg` files in subdirectories of the current directory, and show a cumulative total at the end:
`du -ch {{*/*.jpg}}`

33
osx/duti Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# duti
> Set default applications for document types and URL schemes on macOS.
> More information: <https://github.com/moretension/duti>.
- Set Safari as the default handler for HTML documents:
`duti -s {{com.apple.Safari}} {{public.html}} all`
- Set VLC as the default viewer for files with `.m4v` extensions:
`duti -s {{org.videolan.vlc}} {{m4v}} viewer`
- Set Finder as the default handler for the ftp:// URL scheme:
`duti -s {{com.apple.Finder}} "{{ftp}}"`
- Display information about the default application for a given extension:
`duti -x {{ext}}`
- Display the default handler for a given UTI:
`duti -d {{uti}}`
- Display all handlers of a given UTI:
`duti -l {{uti}}`

30
osx/ed Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# ed
> The original Unix text editor.
> See also: `awk`, `sed`.
> More information: <https://www.gnu.org/software/ed/manual/ed_manual.html>.
- Start an interactive editor session with an empty document:
`ed`
- Start an interactive editor session with an empty document and a specific [p]rompt:
`ed -p '> '`
- Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt:
`ed -s`
- Edit a specific file (this shows the byte count of the loaded file):
`ed {{path/to/file}}`
- Replace a string with a specific replacement for all lines:
`,s/{{regular_expression}}/{{replacement}}/g`

22
osx/emond Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# emond
> Event Monitor service that accepts events from various services, runs them through a simple rules engine, and takes action.
> The actions can run commands, send email, or SMS messages.
> More information: <https://keith.github.io/xcode-man-pages/emond.8.html>.
- Start the daemon:
`emond`
- Specify rules for emond to process by giving a path to a file or directory:
`emond -r {{path/to/file_or_directory}}`
- Use a specific configuration file:
`emond -c {{path/to/config_file}}`

29
osx/fdesetup Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# fdesetup
> Set and retrieve FileVault related information.
> More information: <https://keith.github.io/xcode-man-pages/fdesetup.8.html>.
- List current FileVault enabled users:
`sudo fdesetup list`
- Get current FileVault status:
`fdesetup status`
- Add FileVault enabled user:
`sudo fdesetup add -usertoadd {{user1}}`
- Enable FileVault:
`sudo fdesetup enable`
- Disable FileVault:
`sudo fdesetup disable`

14
osx/filecoordinationd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# filecoordinationd
> Coordinates access to files by multiple processes (`NSFileCoordinator`, `NSFilePresenter`).
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/filecoordinationd.8.html>.
- Start the daemon:
`filecoordinationd`

25
osx/fileicon Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# fileicon
> Manage custom file and folder icons.
> More information: <https://github.com/mklement0/fileicon>.
- Set a custom icon for a specific file or directory:
`fileicon set {{path/to/file_or_directory}} {{path/to/icon_file.png}}`
- Remove a custom icon from a specific file or directory:
`fileicon rm {{path/to/file_or_directory}}`
- Save the custom icon of a file or directory as a `.icns` file into the current directory:
`fileicon get {{path/to/file_or_directory}}`
- Test if a specific file or directory has a custom icon:
`fileicon test {{path/to/file_or_directory}}`

14
osx/fontd Normal file
View File

@@ -0,0 +1,14 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# fontd
> Makes fonts available to the system.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/fontd.8.html>.
- Start the daemon:
`fontd`

26
osx/fsck Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# fsck
> Check the integrity of a filesystem or repair it. The filesystem should be unmounted at the time the command is run.
> It is a wrapper that calls `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, and `fsck_udf` as needed.
> More information: <https://keith.github.io/xcode-man-pages/fsck.8.html>.
- Check filesystem `/dev/sdX`, reporting any damaged blocks:
`fsck {{/dev/sdX}}`
- Check filesystem `/dev/sdX` only if it is clean, reporting any damaged blocks and interactively letting the user choose to repair each one:
`fsck -f {{/dev/sdX}}`
- Check filesystem `/dev/sdX` only if it is clean, reporting any damaged blocks and automatically repairing them:
`fsck -fy {{/dev/sdX}}`
- Check filesystem `/dev/sdX`, reporting whether it has been cleanly unmounted:
`fsck -q {{/dev/sdX}}`

21
osx/ftxdiff Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# ftxdiff
> Compare differences between two fonts.
> More information: <https://developer.apple.com/fonts>.
- Output differences to a specific text file:
`ftxdiff --output {{path/to/fontdiff_file.txt}} {{path/to/font_file1.ttc}} {{path/to/font_file2.ttc}}`
- Include glyph names in output:
`ftxdiff --include-glyph-names`
- Include unicode names in output:
`ftxdiff --include-unicode-names`

12
osx/g[ Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# g[
> This command is an alias of GNU `[`.
- View documentation for the original command:
`tldr -p linux [`

12
osx/gawk Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gawk
> This command is an alias of GNU `awk`.
- View documentation for the original command:
`tldr -p linux awk`

12
osx/gb2sum Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gb2sum
> This command is an alias of GNU `b2sum`.
- View documentation for the original command:
`tldr -p linux b2sum`

12
osx/gbase32 Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gbase32
> This command is an alias of GNU `base32`.
- View documentation for the original command:
`tldr -p linux base32`

12
osx/gbase64 Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gbase64
> This command is an alias of GNU `base64`.
- View documentation for the original command:
`tldr -p linux base64`

12
osx/gbasename Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gbasename
> This command is an alias of GNU `basename`.
- View documentation for the original command:
`tldr -p linux basename`

12
osx/gbasenc Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gbasenc
> This command is an alias of GNU `basenc`.
- View documentation for the original command:
`tldr -p linux basenc`

12
osx/gcat Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcat
> This command is an alias of GNU `cat`.
- View documentation for the original command:
`tldr -p linux cat`

12
osx/gchcon Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gchcon
> This command is an alias of GNU `chcon`.
- View documentation for the original command:
`tldr -p linux chcon`

12
osx/gchgrp Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gchgrp
> This command is an alias of GNU `chgrp`.
- View documentation for the original command:
`tldr -p linux chgrp`

12
osx/gchmod Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gchmod
> This command is an alias of GNU `chmod`.
- View documentation for the original command:
`tldr -p linux chmod`

12
osx/gchown Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gchown
> This command is an alias of GNU `chown`.
- View documentation for the original command:
`tldr -p linux chown`

12
osx/gchroot Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gchroot
> This command is an alias of GNU `chroot`.
- View documentation for the original command:
`tldr -p linux chroot`

12
osx/gcksum Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcksum
> This command is an alias of GNU `cksum`.
- View documentation for the original command:
`tldr -p linux cksum`

12
osx/gcomm Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcomm
> This command is an alias of GNU `comm`.
- View documentation for the original command:
`tldr -p linux comm`

12
osx/gcp Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcp
> This command is an alias of GNU `cp`.
- View documentation for the original command:
`tldr -p linux cp`

12
osx/gcsplit Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcsplit
> This command is an alias of GNU `csplit`.
- View documentation for the original command:
`tldr -p linux csplit`

12
osx/gcut Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gcut
> This command is an alias of GNU `cut`.
- View documentation for the original command:
`tldr -p linux cut`

12
osx/gdate Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdate
> This command is an alias of GNU `date`.
- View documentation for the original command:
`tldr -p linux date`

12
osx/gdd Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdd
> This command is an alias of GNU `dd`.
- View documentation for the original command:
`tldr -p linux dd`

12
osx/gdf Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdf
> This command is an alias of GNU `df`.
- View documentation for the original command:
`tldr -p linux df`

12
osx/gdir Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdir
> This command is an alias of GNU `dir`.
- View documentation for the original command:
`tldr -p linux dir`

12
osx/gdircolors Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdircolors
> This command is an alias of GNU `dircolors`.
- View documentation for the original command:
`tldr -p linux dircolors`

12
osx/gdirname Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdirname
> This command is an alias of GNU `dirname`.
- View documentation for the original command:
`tldr -p linux dirname`

12
osx/gdnsdomainname Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gdnsdomainname
> This command is an alias of GNU `dnsdomainname`.
- View documentation for the original command:
`tldr -p linux dnsdomainname`

12
osx/gecho Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gecho
> This command is an alias of GNU `echo`.
- View documentation for the original command:
`tldr -p linux echo`

12
osx/ged Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# ged
> This command is an alias of GNU `ed`.
- View documentation for the original command:
`tldr -p linux ed`

12
osx/gegrep Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# gegrep
> This command is an alias of GNU `egrep`.
- View documentation for the original command:
`tldr -p linux egrep`

12
osx/genv Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# genv
> This command is an alias of GNU `env`.
- View documentation for the original command:
`tldr -p linux env`

Some files were not shown because too many files have changed in this diff Show More