-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
107 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: page | ||
title: common/cargo-help (English) | ||
description: "Display help on `cargo` and its subcommands." | ||
content_hash: 60923c4d270fa767a18fda5b4a1450fe2a92e546 | ||
last_modified_at: 2023-09-12 | ||
--- | ||
|
||
This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while. | ||
|
||
<hr># cargo help | ||
|
||
Display help on `cargo` and its subcommands. | ||
More information: <https://doc.rust-lang.org/cargo/commands/cargo-help.html>. | ||
|
||
- Display general help: | ||
|
||
`cargo help` | ||
|
||
- Display help for a subcommand: | ||
|
||
`cargo help `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">subcommand</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: page | ||
title: common/cargo-version (English) | ||
description: "Display `cargo` version information." | ||
content_hash: 8ebb6c63016e9dd1f79023671186675841b7b891 | ||
last_modified_at: 2023-09-12 | ||
--- | ||
|
||
This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while. | ||
|
||
<hr># cargo version | ||
|
||
Display `cargo` version information. | ||
More information: <https://doc.rust-lang.org/cargo/commands/cargo-version.html>. | ||
|
||
- Display the version of `cargo`: | ||
|
||
`cargo version` | ||
|
||
- Display additional build information: | ||
|
||
`cargo version --verbose` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
layout: page | ||
title: common/eza (English) | ||
description: "Modern, maintained replacement for `ls`, built on `exa`." | ||
content_hash: 54bf1d28eaba2bd528a518178a6d11d75e721ce8 | ||
last_modified_at: 2023-09-12 | ||
--- | ||
|
||
This entry is very new in the [tldr-pages](https://github.com/tldr-pages/tldr) project, hence translation data is currently unavailable for a while. | ||
|
||
<hr># eza | ||
|
||
Modern, maintained replacement for `ls`, built on `exa`. | ||
More information: <https://github.com/eza-community/eza>. | ||
|
||
- List files one per line: | ||
|
||
`eza --oneline` | ||
|
||
- List all files, including hidden files: | ||
|
||
`eza --all` | ||
|
||
- Long format list (permissions, ownership, size and modification date) of all files: | ||
|
||
`eza --long --all` | ||
|
||
- List files with the largest at the top: | ||
|
||
`eza --reverse --sort=`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">size</span> | ||
|
||
- Display a tree of files, three levels deep: | ||
|
||
`eza --long --tree --level=`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">3</span> | ||
|
||
- List files sorted by modification date (oldest first): | ||
|
||
`eza --long --sort=`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">modified</span> | ||
|
||
- List files with their headers, icons, and Git statuses: | ||
|
||
`eza --long --header --icons --git` | ||
|
||
- Don't list files mentioned in `.gitignore`: | ||
|
||
`eza --git-ignore` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule source
updated
5 files
+3 −12 | .github/workflows/codespell.yml | |
+12 −0 | pages/common/cargo-help.md | |
+12 −0 | pages/common/cargo-version.md | |
+36 −0 | pages/common/eza.md | |
+14 −14 | pages/linux/iptables.md |