mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
76109ca8cd
The `-i` flag with `sed` means "in-place", if you're curious; the use thereof allows for making actual changes to the file, not just superfluously, such as for additional parsing. The `s///` is a simple substitution, wherein the `s` marks that it's a substitution, the `/` marks the boundaries*, and the final boundary can be suffixed with various flags, such as `g`, for global operations, - and `i`, for case-insensitive operations. * required, but the slash can switched for something else, if needed, - such as `|`, which is commonly used for paths. For example: `s|/path/to/file|/path/file|` |
||
---|---|---|
see_also | ||
sheets | ||
LICENSE | ||
README.md |
cheat.sheets
Own cheat sheets repository of the cheat.sh.
If you want to add a cheat sheet to cheat.sh directly, add it here (please also consider adding your cheat sheet to one of the upstream repositories).
When adding a cheat sheet please use the following format:
# Command1 description
# started with some comments
# and followed with a command example/switches
command1
# Command2 description
# Each block separated with an empty line
command2