*: sync translations with English pages (#22878)

This commit is contained in:
Nelson Figueroa
2026-06-16 16:39:29 +02:00
committed by GitHub
parent bae751be8d
commit ca64c46f2f
11 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -14,7 +14,7 @@
- Izinkan peringatan dan simbol debug dalam output: - Izinkan peringatan dan simbol debug dalam output:
`g++ {{jalan/menuju/sumber.cpp}} -Wall {{-g|--debug}} -Og {{[-o|--output]}} {{jalan/menuju/program}}` `g++ {{jalan/menuju/sumber.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{jalan/menuju/program}}`
- Pilih standar bahasa untuk dikompilasi (C++98/C++11/C++14/C++17): - Pilih standar bahasa untuk dikompilasi (C++98/C++11/C++14/C++17):
@@ -26,7 +26,7 @@
- Susun dan gabungkan beberapa berkas kode sumber menjadi suatu berkas program biner: - Susun dan gabungkan beberapa berkas kode sumber menjadi suatu berkas program biner:
`g++ {{-c|--compile}} {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} && g++ {{[-o|--output]}} {{jalan/menuju/program}} {{jalan/menuju/sumber1.o jalan/menuju/sumber2.o ...}}` `g++ {{[-c|--compile]}} {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} && g++ {{[-o|--output]}} {{jalan/menuju/program}} {{jalan/menuju/sumber1.o jalan/menuju/sumber2.o ...}}`
- [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat: - [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat:
+3 -3
View File
@@ -14,11 +14,11 @@
- 応答までの待機時間を秒単位で指定する: - 応答までの待機時間を秒単位で指定する:
`traceroute --wait={{0.5}} {{example.com}}` `traceroute {{[-w|--wait]}} {{0.5}} {{example.com}}`
- ホップごとのクエリ回数を指定する: - ホップごとのクエリ回数を指定する:
`traceroute --queries={{5}} {{example.com}}` `traceroute {{[-q|--queries]}} {{5}} {{example.com}}`
- プローブパケットのサイズをバイト単位で指定する: - プローブパケットのサイズをバイト単位で指定する:
@@ -30,4 +30,4 @@
- UDPの代わりにICMPを使ってトレースルートする: - UDPの代わりにICMPを使ってトレースルートする:
`traceroute --icmp {{example.com}}` `traceroute {{[-I|--icmp]}} {{example.com}}`
+4 -4
View File
@@ -10,16 +10,16 @@
- 説明文を行末で切らないで表示する: - 説明文を行末で切らないで表示する:
`whatis --long {{コマンド}}` `whatis {{[-l|--long]}} {{コマンド}}`
- globパターンにマッチするすべてのコマンドの説明文を表示する: - globパターンにマッチするすべてのコマンドの説明文を表示する:
`whatis --wildcard {{net*}}` `whatis {{[-w|--wildcard]}} {{net*}}`
- 正規表現でmanページの説明文を検索する: - 正規表現でmanページの説明文を検索する:
`whatis --regex '{{wish[0-9]\.[0-9]}}'` `whatis {{[-r|--regex]}} '{{wish[0-9]\.[0-9]}}'`
- 言語を指定して説明文で表示する: - 言語を指定して説明文で表示する:
`whatis --locale={{ja}} {{コマンド}}` `whatis {{[-L|--locale]}} {{ja}} {{コマンド}}`
+2 -2
View File
@@ -9,8 +9,8 @@
- 명령이 성공할 때까지 n초마다 재시도: - 명령이 성공할 때까지 n초마다 재시도:
`retry --delay={{n}} {{명령}}` `retry {{[-d|--delay]}} {{n}} {{명령}}`
- n번 시도 후 포기: - n번 시도 후 포기:
`retry --times={{n}} {{명령}}` `retry {{[-t|--times]}} {{n}} {{명령}}`
+3 -3
View File
@@ -5,12 +5,12 @@
- 장치 b의 파티션 1(`sdb1`)에 ext2 파일 시스템 생성: - 장치 b의 파티션 1(`sdb1`)에 ext2 파일 시스템 생성:
`mkfs -t ext2 {{/dev/sdb1}}` `sudo mke2fs -t ext2 {{/dev/sdb1}}`
- 장치 b의 파티션 1(`sdb1`)에 ext3 파일 시스템 생성: - 장치 b의 파티션 1(`sdb1`)에 ext3 파일 시스템 생성:
`mkfs -t ext3 {{/dev/sdb1}}` `sudo mke2fs -t ext3 {{/dev/sdb1}}`
- 장치 b의 파티션 1(`sdb1`)에 ext4 파일 시스템 생성: - 장치 b의 파티션 1(`sdb1`)에 ext4 파일 시스템 생성:
`mkfs -t ext4 {{/dev/sdb1}}` `sudo mke2fs -t ext4 {{/dev/sdb1}}`
+1 -1
View File
@@ -17,4 +17,4 @@
- 기본 SELinux 보안 컨텍스트로 장치 파일 생성: - 기본 SELinux 보안 컨텍스트로 장치 파일 생성:
`sudo mknod {{[-Z |--context=]}}{{경로/대상/장치_파일}} {{유형}} {{주_장치_번호}} {{부_장치_번호}}` `sudo mknod {{[-Z|--context]}} {{경로/대상/장치_파일}} {{유형}} {{주_장치_번호}} {{부_장치_번호}}`
+1 -1
View File
@@ -13,4 +13,4 @@
- 지정된 제약 조건을 충족하는 노드만 할당: - 지정된 제약 조건을 충족하는 노드만 할당:
`salloc --constraint={{(amd|intel)&gpu}}` `salloc {{[-C|--constraint]}} {{(amd|intel)&gpu}}`
+1 -1
View File
@@ -13,7 +13,7 @@
- மனிதர்கள் [H] படிக்கக்கூடிய அலகுகளைப் பயன்படுத்தவும் (1000 இன் சக்திகளின் அடிப்படையில்): - மனிதர்கள் [H] படிக்கக்கூடிய அலகுகளைப் பயன்படுத்தவும் (1000 இன் சக்திகளின் அடிப்படையில்):
`df -{{-si|H}}` `df {{[-H|--si]}}`
- கொடுக்கப்பட்ட கோப்பு அல்லது கோப்பகத்தைக் கொண்ட கோப்பு முறைமை மற்றும் அதன் வட்டு பயன்பாட்டைக் காண்பி: - கொடுக்கப்பட்ட கோப்பு அல்லது கோப்பகத்தைக் கொண்ட கோப்பு முறைமை மற்றும் அதன் வட்டு பயன்பாட்டைக் காண்பி:
+1 -1
View File
@@ -22,7 +22,7 @@
- Bir gruptan belirtilen kullanıcıyı kaldırın: - Bir gruptan belirtilen kullanıcıyı kaldırın:
`sudo usermod {{[-rG --remove --groups]}} {{grup1,grup2,...}} {{kullanıcı_adı}}` `sudo usermod {{[-rG|--remove --groups]}} {{grup1,grup2,...}} {{kullanıcı_adı}}`
- Kullanıcı ev dizinini değiştirin: - Kullanıcı ev dizinini değiştirin:
+1 -1
View File
@@ -14,7 +14,7 @@
- 退出当前 arthas 客户端的连接,但不停止 arthas 服务: - 退出当前 arthas 客户端的连接,但不停止 arthas 服务:
`exit|quit|logout|q` `{{exit|quit|logout|q}}`
- 停止 arthas 服务,断开所有 arthas 客户端的连接: - 停止 arthas 服务,断开所有 arthas 客户端的连接:
+1 -1
View File
@@ -17,4 +17,4 @@
- 使用 SELinux 默认安全上下文创建设备文件: - 使用 SELinux 默认安全上下文创建设备文件:
`sudo mknod {{[-Z |--context=]}}{{路径/到/设备文件}} {{类型}} {{主设备号}} {{次设备号}}` `sudo mknod {{[-Z|--context]}} {{路径/到/设备文件}} {{类型}} {{主设备号}} {{次设备号}}`