mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:22:09 +02:00
history: add Indonesian translation (#9303)
This commit is contained in:
parent
dc1f1a8540
commit
b47a115dc2
1 changed files with 24 additions and 0 deletions
24
pages.id/common/history.md
Normal file
24
pages.id/common/history.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# history
|
||||
|
||||
> Sejarah command-line.
|
||||
> Informasi lebih lanjut: <https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html>.
|
||||
|
||||
- Menampilkan sejarah perintah-perintah dengan angka baris:
|
||||
|
||||
`history`
|
||||
|
||||
- Menampilkan 20 perintah-perintah terakhir (di `zsh` perintah ini menampilkan semua perintah-perintah sejak dari baris ke-20):
|
||||
|
||||
`history {{20}}`
|
||||
|
||||
- Menghapus sejarah perintah-perintah (hanya untuk sesi shell `bash` saat ini):
|
||||
|
||||
`history -c`
|
||||
|
||||
- Menulis ulang file sejarah dengan sejarah sesi shell `bash` saat ini (seringkali dikombinasikan dengan `history -c` untuk menghapus sejarah):
|
||||
|
||||
`history -w`
|
||||
|
||||
- Menghapus entri sejarah pada offset tertentu:
|
||||
|
||||
`history -d {{offset}}`
|
Loading…
Add table
Reference in a new issue