mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:22:10 +02:00

* 7z, 7za, 7zr: update Indonesian translation * common: imperative mood on Indonesian translation * linux, osx, windows: imperative mood on Indonesian translation * common, linux: add Indonesian translation * powershell, pwsh: add Indonesian translation * common: add Indonesian translation * gcc: use standard file path template * Update pages.id/common/gcc.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/gcc.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/7za.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Apply suggestions from code review Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.id/common/gcc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages.id/common/7za.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update 7za.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update gcc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * git-commit: update Indonesian translation --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
1.3 KiB
1.3 KiB
powershell
Sebuah syel/shell dan bahasa pemrograman berbasis naskah/script yang dirancang untuk administrasi sistem komputer. Perintah ini merujuk kepada PowerShell versi 5.1 ke bawah (juga dikenal sebagai PowerShell bawaan Windows). Gunakan perintah
pwsh
daripadapowershell
untuk menggunakan PowerShell versi terkini (6.0 ke atas) yang tersedia lintas sistem operasi. Informasi lebih lanjut: https://learn.microsoft.com/windows-server/administration/windows-commands/powershell.
- Jalankan sesi PowerShell interaktif baru:
powershell
- Jalankan sesi interaktif tanpa memuat profil konfigurasi startup:
powershell -NoProfile
- Jalankan perintah secara spesifik:
powershell -Command "{{echo 'powershell telah dieksekusi'}}"
- Jalankan suatu naskah perintah/script PowerShell:
powershell -File {{jalan/menuju/naskah.ps1}}
- Jalankan suatu sesi dengan versi PowerShell tertentu:
powershell -Version {{versi}}
- Cegah sesi PowerShell dari keluar secara otomatis setelah menjalankan perintah startup:
powershell -NoExit
- Tentukan format data yang akan dimasukkan ke dalam PowerShell:
powershell -InputFormat {{Text|XML}}
- Tentukan format data yang ingin dikeluarkan dari perintah-perintah PowerShell:
powershell -OutputFormat {{Text|XML}}