From fc9cd57b8852a6566e8c814d8b6a62993ee3f457 Mon Sep 17 00:00:00 2001 From: Shiftine Skyborne Date: Tue, 29 Aug 2023 12:19:04 +0000 Subject: [PATCH] Data update 2023-08-29 12-19-02 --- docs/en/common/objdump.md | 7 ++++++- docs/en/common/shar.md | 18 ++++++++++++++++++ docs/en/linux/shar.md | 34 ++++++++++++++++++++++++++++++++++ source | 2 +- 4 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 docs/en/common/shar.md create mode 100644 docs/en/linux/shar.md diff --git a/docs/en/common/objdump.md b/docs/en/common/objdump.md index 0e82946a52..8c538ab81b 100644 --- a/docs/en/common/objdump.md +++ b/docs/en/common/objdump.md @@ -2,7 +2,8 @@ layout: page title: common/objdump (English) description: "View information about object files." -content_hash: 73f43ea0c9a56a544fd2ce013073d7a7683b9f49 +content_hash: 8180947faeca8208d725dff39cb22fcd485753c0 +last_modified_at: 2023-08-29 --- # objdump @@ -13,6 +14,10 @@ More information: . `objdump -f `binary +- Display all header information: + +`objdump -x `binary + - Display the disassembled output of executable sections: `objdump -d `binary diff --git a/docs/en/common/shar.md b/docs/en/common/shar.md new file mode 100644 index 0000000000..44cb2babf9 --- /dev/null +++ b/docs/en/common/shar.md @@ -0,0 +1,18 @@ +--- +layout: page +title: common/shar (English) +description: "Create a shell archive." +content_hash: 7de684f3b540c034a97fe8bf1607724f64aec332 +last_modified_at: 2023-08-29 +--- + +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. + +
# shar + +Create a shell archive. +More information: . + +- Create a shell script that when executed extracts the given files from itself: + +`shar `path/to/file1 path/to/file2 ...` > `path/to/archive.sh diff --git a/docs/en/linux/shar.md b/docs/en/linux/shar.md new file mode 100644 index 0000000000..423a0cf1ca --- /dev/null +++ b/docs/en/linux/shar.md @@ -0,0 +1,34 @@ +--- +layout: page +title: linux/shar (English) +description: "Create a shell archive." +content_hash: 9853bd8fd74f0005a8863846e33d2843436924f8 +last_modified_at: 2023-08-29 +--- + +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. + +
# shar + +Create a shell archive. +More information: . + +- Create a shell script that when executed extracts the given files from itself: + +`shar --vanilla-operation `path/to/file1 path/to/file2 ...` > `path/to/archive.sh + +- Compress the files in the archive: + +`shar --compactor `xz` `path/to/file1 path/to/file2 ...` > `path/to/archive.sh + +- Treat all files as binary (i.e. `uuencode` everything): + +`shar --uuencode `path/to/file1 path/to/file2 ...` > `path/to/archive.sh + +- Treat all files as text (i.e. `uuencode` nothing): + +`shar --text-files `path/to/file1 path/to/file2 ...` > `path/to/archive.sh + +- Include a name and cut mark in the header comment of the archive: + +`shar --archive-name "`My files`" --cut-mark `path/to/file1 path/to/file2 ...` > `path/to/archive.sh diff --git a/source b/source index b5db16bf55..17d76276d9 160000 --- a/source +++ b/source @@ -1 +1 @@ -Subproject commit b5db16bf55368cbd4978a327a4b0c45115f79c13 +Subproject commit 17d76276d9765cacf08da4e8d5ad511d8dea45e6