Skip to content

Commit

Permalink
Data update 2023-09-15 06-13-46
Browse files Browse the repository at this point in the history
  • Loading branch information
1010bots committed Sep 15, 2023
1 parent c200874 commit 30b5385
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 8 deletions.
30 changes: 30 additions & 0 deletions docs/en/common/!.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
layout: page
title: common/! (English)
description: "Bash builtin to substitute with a command found in history."
content_hash: 4da3907f38609c1c1d339f22e000fcd7427d10aa
last_modified_at: 2023-09-15
---

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># Exclamation mark

Bash builtin to substitute with a command found in history.
More information: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>.

- Substitute with the previous command and run it with sudo:

`sudo !!`

- Substitute with a command based on its line number found with `history`:

`!`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">number</span>

- Substitute with a command that was used a specified number of lines back:

`!-`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">number</span>

- Substitute with the most recent command that starts with `string`:

`!`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">string</span>
30 changes: 28 additions & 2 deletions docs/ko/common/act.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,41 @@
layout: page
title: common/act (한국어)
description: "Docker를 사용하여 로컬로 GitHub작업 실행."
content_hash: d13d0dd09abf464ca26c8b3a599f16fedb0aa75c
content_hash: e33a159d35e5b9a70e39fd6d7f6073a8193142b6
last_modified_at: 2023-09-15
related_topics:
- title: English version
url: /en/common/act.html
icon: bi bi-globe
- title: español version
url: /es/common/act.html
icon: bi bi-globe
- title: français version
url: /fr/common/act.html
icon: bi bi-globe
- title: Nederlands version
url: /nl/common/act.html
icon: bi bi-globe
- title: português (Brasil) version
url: /pt_BR/common/act.html
icon: bi bi-globe
- title: русский version
url: /ru/common/act.html
icon: bi bi-globe
- title: 中文 version
url: /zh/common/act.html
icon: bi bi-globe
---
# act

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/act.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># act

Docker를 사용하여 로컬로 GitHub작업 실행.
더 많은 정보: <https://github.com/nektos/act>.
Expand Down Expand Up @@ -42,3 +64,7 @@ Docker를 사용하여 로컬로 GitHub작업 실행.
- 자세한 로그 표시:

`act -v`

- 특정 워크플로우 실행:

`act push -W `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/워크플로우</span>
26 changes: 21 additions & 5 deletions docs/ko/common/bzip2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: page
title: common/bzip2 (한국어)
description: "블록 정렬 파일 압축기."
content_hash: 3e738b77980a97970721b39c83eb16cc8a65dfa4
last_modified_at: 2022-12-29
content_hash: b4c6d85c664f12d33a8ef22d8e3f5e7056d0d9ae
last_modified_at: 2023-09-15
related_topics:
- title: English version
url: /en/common/bzip2.html
Expand Down Expand Up @@ -31,12 +31,28 @@ Please considering fixing this issue by contributing to the [tldr-pages](https:/

- 파일 압축하기:

`bzip2 `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/압축할_파일명</span>
`bzip2 `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축할_파일</span>

- 파일 압축해제하기:

`bzip2 -d `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/압축된_.bz2파일</span>
`bzip2 -d `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축된_파일.bz2</span>

- 파일을 표준 출력으로 압축해제:

`bzip2 -dc `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/압축된_.bz2파일</span>
`bzip2 -dc `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축된_파일.bz2</span>

- 압축된 파일 내 각 파일의 무결성 테스트:

`bzip2 --test `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축된_파일.bz2</span>

- 압축된 파일의 각 파일에 대한 압축률과 자세한 정보 표시:

`bzip2 --verbose `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축된_파일.bz2</span>

- 기존 파일을 덮어쓰면서 파일 압축 해제:

`bzip2 --force `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">경로/대상/압축된_파일.bz2</span>

- 도움말 표시:

`bzip2 -h`
2 changes: 1 addition & 1 deletion source

0 comments on commit 30b5385

Please sign in to comment.