mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +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.2 KiB
1.2 KiB
pwsh
Sebuah syel/shell dan bahasa pemrograman berbasis naskah/script yang dirancang untuk administrasi sistem komputer. Perintah ini merujuk kepada PowerShell versi 6 ke atas (juga dikenal sebagai PowerShell Core dan PowerShell lintas sistem operasi). Gunakan perintah
powershell
daripadapwsh
untuk menggunakan PowerShell versi bawaan Windows (5.1 ke bawah). Informasi lebih lanjut: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh.
- Jalankan sesi PowerShell interaktif baru:
pwsh
- Jalankan sesi interaktif tanpa memuat profil konfigurasi startup:
pwsh -NoProfile
- Jalankan perintah secara spesifik:
pwsh -Command "{{echo 'powershell telah dieksekusi'}}"
- Jalankan suatu naskah perintah/script PowerShell:
pwsh -File {{jalan/menuju/naskah.ps1}}
- Jalankan suatu sesi dengan versi PowerShell tertentu:
pwsh -Version {{versi}}
- Cegah sesi PowerShell dari keluar secara otomatis setelah menjalankan perintah startup:
pwsh -NoExit
- Tentukan format data yang akan dimasukkan ke dalam PowerShell:
pwsh -InputFormat {{Text|XML}}
- Tentukan format data yang ingin dikeluarkan dari perintah-perintah PowerShell:
pwsh -OutputFormat {{Text|XML}}