AxCrypt Komut Satırı Arayüzü (CLI), terminalinizden veya komut isteğinizden dosyaları şifrelemenize ve çözmenize olanak tanıyan ücretsiz ve açık kaynaklı bir araçtır.
Command Syntax Overview
AxCryptCli --[command] [arg1 arg2 arg3 ...]
Where:
AxCryptCli → The program name that performs file encryption or decryption
--[command] → The operation to be performed (e.g., )
[args] → Inputs required by the command, such as file paths
Setting the Password
Before running any encryption or decryption operation, you must provide a passphrase.
Syntax
--passphrase [password]
Full Command Example
AxCryptCli --passphrase fileSecret
Bu, sonraki işlemler için şifreyi belirler.
Encrypting Dosyalar
To encrypt one or more files, use the command.
Syntax
--encrypt [file1 file2 file3 ... fileN]
Full Command Example
AxCryptCli --passphrase fileSecret --encrypt C:\Docs\file.docx
Each file must be referenced using its full file path.
After encryption, the output file will have the extension.
Decrypting Dosyalar
To decrypt encrypted files, use the command.
Syntax
--decrypt [file1 file2 file3 ... fileN]
Full Command Example
AxCryptCli --passphrase fileSecret --encrypt C:\Docs\file.docx
You must use the same passphrase that was used during encryption.
Komut Satırı Arayüzü (CLI) şu amaçlar için idealdir:
Hızlı tek seferlik şifreleme ve şifre çözme
Rutin dosya koruma görevlerinin betiklerle otomatikleştirilmesi
GUI araçlarının bulunmadığı ortamlar
The AxCrypt CLI does not require an account or sign-in. You only need to supply a password to perform secure 128-bit AES encryption or decryption.
Currently, the CLI supports two core operations:
Şifrele
Çöz
Not:
You can encrypt or decrypt multiple files in one command by listing them all after the command.
Otomatik koruma iş akışları için scriptler (PowerShell, Bash, toplu dosyalar) için idealdir.
Axcrypt CLI'yı kullanabilmek için AxCrypt hesabı kaydetmenize veya oluşturmanıza gerek yoktur.
How the Command Line Works
A command line is a text-based interface that allows you to interact with your computer by typing commands instead of clicking buttons. A password is required for both encryption and decryption.
It’s commonly used by developers, system administrators, and power users because it’s fast, precise, and ideal for automation.
1. Bir komut yazıyorsunuz
A command is a line of text that tells the computer what action you want it to perform.
Örnek:
AxCryptCli --encrypt C:\Docs\file.docx
2. Komut satırı yazdıklarınızı okur ve yorumlar
Komut satırı (Komut Göndermesi, PowerShell veya Terminal) girdinizi şu bölümlere böler:
Program name (the tool you want to run)
Commands or switches (what you want that tool to do)
Arguments (additional information like file paths)
Örnek dağılımı:
AxCryptCli → program--encrypt → command/switchC:\Docs\file.docx → argument/file path
3. Program komutunuzu çalıştırır
Once interpreted, the command is passed to the program (in this case, AxCryptCli).
The program then performs the action — such as encrypting, decrypting, copying, moving, or creating files
AxCrypt CLI için bu işlem genellikle şöyledir:
Bir dosyayı şifrelemek
Bir dosyanın şifresini çözme
4. Program çıktı döndürür
Komut işlendikten sonra, program genellikle sonucu terminalde gösterir.
Örnek:
"Dosya başarıyla şifrelendi"
"Yanlış şifre"
"Dosya bulunamadı"
Hiç mesaj yok (sessizce çalıştırılıyorsa)
Bazı komut satırı araçları yeni dosyalar da oluşturur (örneğin AxCrypt .axx şifreli dosyalar oluşturur).
5. Komutları zincirleyebilir veya otomatikleştirebilirsiniz
Komut satırı araçları şunların içine yerleştirilebilir:
Toplu dosyalar (.bat)
PowerShell senaryoları (.ps1)
Bash senaryoları (.sh)
Cron işleri / planlanmış görevler
This makes repetitive tasks automatic and efficient.
Example of automating encryption daily:
AxCryptCli --passphrase mySecret --encrypt C:\Backups\*.txt












