terminal command directory
High-performance terminal command directory for engineers.
Search exact CLI syntax. Scan verified examples. Open the detail page and copy the command.
CLI Access
curl https://www.syntaxstandard.com/q/ffmpeg+extract+audio 2010 commands
293
tools covered
2010
total commands
2010
verified entries
Commands
Grouped by tool and tuned for fast scanning.
Press / to search
Abduco
Verified for current stable LTS abduco Operations
Abduco Command: Attach Read Only Session
abduco -Ar <name> abduco Operations
Abduco Command: Detach From Session
<Ctrl > abduco Operations
Abduco Command: Attach Or Create Session With Bash
abduco -A <name> <bash> abduco Operations
Abduco Command: Attach Or Create Session With Dvtm
abduco -A <name> abduco Operations
Abduco Command: Attach To Session Read Only
abduco -Ar <name> abduco Operations
Abduco Command: List Sessions
abduco abduco Operations
Abduco Command: Attach Or Create Session
abduco -A <name> <bash> abduco Operations
Abduco Command: Attach Session With Dvtm
abduco -A <name> FFmpeg
Verified for v7.1 LTS ffmpeg Video
FFmpeg Command: Combine Images Into Video Or Gif
ffmpeg -i <path/to/frame_%d.jpg> -f image2 <video.mpg|video.gif> ffmpeg Video
FFmpeg Command: Convert Avi To Mp4
ffmpeg -i <path/to/input_video>.avi -c:a aac -b:a 128k -c:v libx264 -crf 23 <path/to/output_video>.mp4 ffmpeg Video
FFmpeg Command: Convert Mp4 To Vp9
ffmpeg -i <path/to/input_video>.mp4 -c:v libvpx-vp9 -crf <30> -b:v 0 -c:a libopus -vbr on -threads <number_of_threads> <path/to/output_video>.webm ffmpeg Audio
FFmpeg Command: Extract Sound From Video
ffmpeg -i <path/to/video.mp4> -vn <path/to/sound.mp3> ffmpeg Audio
FFmpeg Command: Transcode Flac To Cd Format
ffmpeg -i <path/to/input_audio.flac> -ar 44100 -sample_fmt s16 <path/to/output_audio.wav> ffmpeg Video
FFmpeg Command: Save Video As Gif
ffmpeg -i <path/to/video.mp4> -vf 'scale=-1:1000' -r 15 <path/to/output.gif> ffmpeg Video
FFmpeg Command: Trim Video
ffmpeg -i <path/to/input_video.mp4> -ss {mm:ss} -to {mm2:ss2} -c copy <path/to/output_video.mp4> ffmpeg Video
FFmpeg Command: Remux Mkv To Mp4
ffmpeg -i <path/to/input_video>.mkv -c copy <path/to/output_video>.mp4 Curl
Verified for v8.11 LTS curl HTTP
Curl Command: Make Http Get Request
curl https://example.com curl HTTP
Curl Command: Send Form Encoded Data
curl [-X|--request] POST [-d|--data] '{name=bob}' http://example.com/form curl HTTP
Curl Command: Send Json Data
curl [-d|--data] '{"name":"bob"}' [-H|--header] '{Content-Type: application/json}' http://example.com/users/1234 curl HTTP
Curl Command: Make Http Get Request Follow Redirects
curl [-L|--location] [-D|--dump-header] - https://example.com curl HTTP
Curl Command: Download File
curl [-O|--remote-name] https://example.com/filename.zip curl HTTP
Curl Command: Send Request With Extra Header
curl [-k|--insecure] [-x|--proxy] http://127.0.0.1:8080 [-H|--header] '{Authorization: Bearer token}' [-X|--request] GET https://example.com curl HTTP
Curl Command: Pass Client Certificate
curl [-E|--cert] client.pem --key key.pem [-k|--insecure] https://example.com curl HTTP
Curl Command: Resolve Hostname To Custom Ip
curl [-v|--verbose] --resolve example.com:80:127.0.0.1 http://example.com Tar
Verified for v1.35 LTS tar HTTP
Tar Command: Create An Archive And Write It To A File
tar cf <path/to/target.tar> <path/to/file1 path/to/file2 ...> tar HTTP
Tar Command: Create A Gzipped Archive From A Directory Using Relative Paths
tar czf <path/to/target.tar.gz> -C <path/to/directory> . tar HTTP
Tar Command: Create A Compressed Archive And Write It To A File Using The File Extension To Automatically Determine The Compression Program
tar caf <path/to/target.tar.xz> <path/to/file1 path/to/file2 ...> tar Archive
Tar Command: Extract Files Matching A Pattern From An Archive File
tar xf <path/to/source.tar> --wildcards "<*.html>" tar HTTP
Tar Command: Create A Gzipped Archive And Write It To A File
tar czf <path/to/target.tar.gz> <path/to/file1 path/to/file2 ...> tar Archive
Tar Command: Extract A Compressed Archive File Into The Current Directory Verbosely
tar xvf <path/to/source.tar[.gz|.bz2|.xz]> tar HTTP
Tar Command: Extract A Compressed Archive File Into The Target Directory
tar xf <path/to/source.tar[.gz|.bz2|.xz]> -C <path/to/directory> tar Archive
Tar Command: List The Contents Of A Tar File Verbosely
tar tvf <path/to/source.tar> Grep
Verified for v3.11 LTS grep Search
Grep Command: Search For A Pattern In All Files Recursively
grep -rI "<search_pattern>" <path/to/directory> grep Search
Grep Command: Print File Name And Line Number With Color Output
grep -Hn --color=always "<search_pattern>" <path/to/file> grep Search
Grep Command: Use Extended Regexes Case Insensitive
grep -Ei "<search_pattern>" <path/to/file> grep Search
Grep Command: Search For A Pattern Within Files
grep "<search_pattern>" <path/to/file1 path/to/file2 ...> grep Search
Grep Command: Search For An Exact String
grep -F "<exact_string>" <path/to/file> grep Search
Grep Command: Print Context Around Each Match
grep --context 3 "<search_pattern>" <path/to/file> grep Search
Grep Command: Print Only The Matched Text
grep -o "<search_pattern>" <path/to/file> grep Search
Grep Command: Read From Stdin And Invert Match
cat <path/to/file> | grep -v "<search_pattern>" Docker
Verified for v27.4 LTS docker Video
Docker Command: Start Container From Image
docker run --name <container_name> <image> docker Video
Docker Command: Display Downloaded Images
docker images docker Containers
Docker Command: Fetch And Follow Container Logs
docker logs -f <container_name> docker Containers
Docker Command: List All Docker Containers
docker ps -a docker Archive
Docker Command: Start Or Stop Existing Container
docker container <start|stop> <container_name> docker Video
Docker Command: Pull Image From Registry
docker pull <image> docker Containers
Docker Command: Open Interactive Tty In Container
docker exec -it <container_name> <sh> docker Containers
Docker Command: Remove Stopped Containers
docker rm <container1 container2 ...> Ab
Verified for current stable LTS ab HTTP
Ab Command: Execute Get Requests
ab -n 100 <url> ab Operations
Ab Command: Use Keep Alive
ab -k <url> ab Operations
Ab Command: Set Timeout For Benchmarking
ab -t <60> <url> ab HTTP
Ab Command: Execute Http Get Requests Concurrent
ab -n 100 -c 10 <url> ab Operations
Ab Command: Set Benchmark Timeout
ab -t <60> <url> ab HTTP
Ab Command: Execute Http Get Requests
ab -n 100 <url> ab HTTP
Ab Command: Execute Http Post Requests
ab -n 100 -T <application/json> -p <path/to/file.json> <url> ab HTTP
Ab Command: Use Http Keep Alive
ab -k <url> ab Operations
Ab Command: Write Results To Csv
ab -e <path/to/file.csv> ab HTTP
Ab Command: Execute Concurrent Get Requests
ab -n 100 -c 10 <url> ab HTTP
Ab Command: Execute Post Requests With Json
ab -n 100 -T <application/json> -p <path/to/file.json> <url> 7z
Verified for current stable LTS 7z Archive
7z Command: Extract Archive Preserve Directory Structure
7z x <path/to/archive.7z> 7z Archive
7z Command: Extract Archive To Stdout
7z x <path/to/archive.7z> -so 7z Archive
7z Command: Set Compression Level
7z a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 7z Archive
7z Command: Add File Or Directory To Archive
7z a <path/to/archive.7z> <path/to/file_or_directory> 7z Archive
7z Command: Encrypt Existing Archive
7z a <path/to/encrypted.7z> -p<password> -mhe=on <path/to/archive.7z> 7z Archive
7z Command: Extract Archive To Specific Directory
7z x <path/to/archive.7z> -o<path/to/output> 7z Archive
7z Command: Archive Using Specific Type
7z a -t<7z|bzip2|gzip|lzip|tar|zip> <path/to/archive> <path/to/file_or_directory> 7z Archive
7z Command: List Archive Contents
7z l <path/to/archive.7z> 7z Archive
7z Command: Encrypt
7z a <path/to/encrypted.7z> -p<password> -mhe=on <path/to/archive.7z> 7z Archive
7z Command: Extract Stdout
7z x <path/to/archive.7z> -so 7z Archive
7z Command: Add
7z a <path/to/archive.7z> <path/to/file_or_directory> 7z Archive
7z Command: Extract Preserve Structure
7z x <path/to/archive.7z> 7z Archive
7z Command: Extract Specific Directory
7z x <path/to/archive.7z> -o<path/to/output> 7z Archive
7z Command: Archive Specific Type
7z a -t<7z|bzip2|gzip|lzip|tar|zip> <path/to/archive> <path/to/file_or_directory> 7z Archive
7z Command: List Contents
7z l <path/to/archive.7z> 7z Archive
7z Command: Set Compression Level
7z a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 7za
Verified for current stable LTS 7za Archive
7za Command: Extract Archive Preserving Original Structure
7za x <path/to/archive.7z> 7za Archive
7za Command: Extract Archive To Stdout
7za x <path/to/archive.7z> -so 7za Archive
7za Command: Archive A File Or Directory
7za a <path/to/archive.7z> <path/to/file_or_directory> 7za Archive
7za Command: Encrypt An Existing Archive
7za a <path/to/encrypted.7z> -p<password> -mhe=<on> <path/to/archive.7z> 7za Archive
7za Command: Extract Archive To Specific Directory
7za x <path/to/archive.7z> -o<path/to/output> 7za Archive
7za Command: Archive Using Specific Type
7za a -t<7z|bzip2|gzip|lzip|tar|...> <path/to/archive.7z> <path/to/file_or_directory> 7za Archive
7za Command: List Contents Of Archive
7za l <path/to/archive.7z> 7za Archive
7za Command: Set Compression Level
7za a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 7za Archive
7za Command: Archive File Or Directory
7za a <path/to/archive.7z> <path/to/file_or_directory> 7za Archive
7za Command: Encrypt Archive
7za a <path/to/encrypted.7z> -p<password> -mhe=<on> <path/to/archive.7z> 7za Archive
7za Command: Extract Archive To Stdout
7za x <path/to/archive.7z> -so 7za Archive
7za Command: List Archive Contents
7za l <path/to/archive.7z> 7za Archive
7za Command: Extract Archive Preserve Structure
7za x <path/to/archive.7z> 7za Archive
7za Command: Extract Archive To Specific Directory
7za x <path/to/archive.7z> -o<path/to/output> 7za Archive
7za Command: Archive With Specific Type
7za a -t<7z|bzip2|gzip|lzip|tar|...> <path/to/archive.7z> <path/to/file_or_directory> 7za Archive
7za Command: Set Compression Level
7za a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 3d Ascii Viewer
Verified for current stable LTS 3d-ascii-viewer Operations
3d Ascii Viewer Command: Display Model
3d-ascii-viewer <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: Enable Color
3d-ascii-viewer --color <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: Display Help
3d-ascii-viewer --help 3d-ascii-viewer Operations
3d Ascii Viewer Command: Set Width Height
3d-ascii-viewer -w <width> -h <height> <path/to/model>.obj 3d-ascii-viewer Video
3d Ascii Viewer Command: Set Frames Per Second
3d-ascii-viewer -f <fps> <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: Interactive Mode
3d-ascii-viewer --interactive <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: DisplayModel
3d-ascii-viewer <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: EnableColor
3d-ascii-viewer --color <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: DisplayHelp
3d-ascii-viewer --help 3d-ascii-viewer Operations
3d Ascii Viewer Command: SetWidthHeight
3d-ascii-viewer -w <width> -h <height> <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: SetFPS
3d-ascii-viewer -f <fps> <path/to/model>.obj 3d-ascii-viewer Operations
3d Ascii Viewer Command: InteractiveMode
3d-ascii-viewer --interactive <path/to/model>.obj 2to3
Verified for current stable LTS 2to3 Operations
2to3 Command: Convert Python2 To Python3
2to3 -w <path/to/file.py> 2to3 Operations
2to3 Command: List Available Fixes
2to3 -l 2to3 Operations
2to3 Command: Dry Run Conversion
2to3 <path/to/file.py> 2to3 Operations
2to3 Command: Convert Except Specified Features
2to3 -w <path/to/file.py> -x <has_key> -x <isinstance> 2to3 Operations
2to3 Command: Convert All Files In Directory
2to3 -o <path/to/python3_directory> -W -n <path/to/python2_directory> 2to3 Operations
2to3 Command: Convert Specific Features
2to3 -w <path/to/file.py> -f <raw_input> -f <print> 2to3 Operations
2to3 Command: Multi Threaded Conversion
2to3 -j <4> -o <path/to/python3_directory> -w -n --no-diffs <path/to/python2_directory> 2to3 Operations
2to3 Command: List Fixes
2to3 -l 2to3 Operations
2to3 Command: Dry Run
2to3 <path/to/file.py> 2to3 Operations
2to3 Command: Convert File
2to3 -w <path/to/file.py> 2to3 Operations
2to3 Command: Exclude Features
2to3 -w <path/to/file.py> -x <has_key> -x <isinstance> 2to3 Operations
2to3 Command: Convert Directory
2to3 -o <path/to/python3_directory> -W -n <path/to/python2_directory> 7zr
Verified for current stable LTS 7zr Archive
7zr Command: Encrypt An Existing Archive
7zr a <path/to/encrypted.7z> -p<password> -mhe=<on> <path/to/archive.7z> 7zr Archive
7zr Command: Extract An Archive To Stdout
7zr x <path/to/archive.7z> -so 7zr Archive
7zr Command: Set Compression Level
7zr a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 7zr Archive
7zr Command: Archive A File Or Directory
7zr a <path/to/archive.7z> <path/to/file_or_directory> 7zr Archive
7zr Command: Extract An Archive Preserving Directory Structure
7zr x <path/to/archive.7z> 7zr Archive
7zr Command: Extract An Archive To Specific Directory
7zr x <path/to/archive.7z> -o<path/to/output> 7zr Archive
7zr Command: List Contents Of An Archive
7zr l <path/to/archive.7z> 7zr Archive
7zr Command: Set Compression Level
7zr a <path/to/archive.7z> -mx=<0|1|3|5|7|9> <path/to/file_or_directory> 7zr Archive
7zr Command: Extract Preserving Structure
7zr x <path/to/archive.7z> 7zr Archive
7zr Command: Extract To Stdout
7zr x <path/to/archive.7z> -so 7zr Archive
7zr Command: Archive
7zr a <path/to/archive.7z> <path/to/file_or_directory> 7zr Archive
7zr Command: Encrypt Existing Archive
7zr a <path/to/encrypted.7z> -p<password> -mhe=<on> <path/to/archive.7z> 7zr Archive
7zr Command: Extract To Specific Directory
7zr x <path/to/archive.7z> -o<path/to/output> 7zr Archive
7zr Command: List Contents
7zr l <path/to/archive.7z> Aapt
Verified for current stable LTS aapt Operations
Aapt Command: Display App Metadata
aapt dump badging <path/to/app>.apk aapt Operations
Aapt Command: List Files
aapt list <path/to/app>.apk aapt Operations
Aapt Command: Display Metadata
aapt dump badging <path/to/app>.apk aapt Operations
Aapt Command: Create Apk
aapt package -F <path/to/app>.apk <path/to/directory> aapt Operations
Aapt Command: List Files In Apk
aapt list <path/to/app>.apk aapt Archive
Aapt Command: Create Apk Archive
aapt package -F <path/to/app>.apk <path/to/directory> Ac
Verified for current stable LTS ac Operations
Ac Command: Print Current User Connection Time
ac ac Operations
Ac Command: Print User Connection Time
ac -p <username> ac Operations
Ac Command: Print Specific User Connection Time
ac -p <username> ac Operations
Ac Command: Print Specific User Connection Time Per Day
ac -dp <username> ac Operations
Ac Command: Print All Users Connection Time
ac -p ac Operations
Ac Command: Print User Connection Time Per Day
ac -dp <username> Atoum
Verified for current stable LTS atoum Operations
Atoum Command: Run Specific Directory Of Tests
atoum -d <path/to/directory> atoum Operations
Atoum Command: Run Tests Under Namespace
atoum -ns <namespace> atoum Operations
Atoum Command: Run Tests With Specific Tag
atoum -t <tag> atoum Operations
Atoum Command: Run Specific Test File
atoum -f <path/to/file> atoum Operations
Atoum Command: Run Tests By Tag
atoum -t <tag> atoum Operations
Atoum Command: Initialize Configuration File
atoum --init atoum Operations
Atoum Command: Run All Tests
atoum atoum Operations
Atoum Command: Run Tests With Configuration
atoum -c <path/to/file> atoum Operations
Atoum Command: Run Specific Directory Of Tests
atoum -d <path/to/directory> atoum Operations
Atoum Command: Run Tests By Namespace
atoum -ns <namespace> atoum Operations
Atoum Command: Load Bootstrap File
atoum -bf <path/to/file> atoum Operations
Atoum Command: Load Custom Bootstrap File
atoum -bf <path/to/file> atoum Operations
Atoum Command: Initialize Configuration File
atoum --init atoum Operations
Atoum Command: Run Specific Test File
atoum -f <path/to/file> atoum Operations
Atoum Command: Run All Tests
atoum atoum Operations
Atoum Command: Run Tests With Configuration
atoum -c <path/to/file> Avo
Verified for current stable LTS avo Operations
Avo Command: Switch Branch
avo checkout <branch_name> avo Operations
Avo Command: Login
avo login avo Operations
Avo Command: Checkout Branch
avo checkout <branch_name> avo Operations
Avo Command: Initialize Workspace
avo init avo Operations
Avo Command: Pull Analytics Wrappers
avo pull avo Operations
Avo Command: Pull Analytics
avo pull avo Operations
Avo Command: Log Into Avo
avo login avo Operations
Avo Command: Display Status
avo status avo Operations
Avo Command: Resolve Git Conflicts
avo conflict avo Operations
Avo Command: Open Workspace
avo edit avo Operations
Avo Command: Display Help
avo <subcommand> --help Accelerate
Verified for current stable LTS accelerate Operations
Accelerate Command: Print Environment Information
accelerate env accelerate Operations
Accelerate Command: Estimate Gpu Memory Cost
accelerate estimate-memory <name/model> accelerate Operations
Accelerate Command: Create Configuration File
accelerate config accelerate Operations
Accelerate Command: Test Configuration File
accelerate test --config_file <path/to/config.yaml> accelerate Operations
Accelerate Command: Run Model On Cpu
accelerate launch <path/to/script.py> --cpu accelerate Operations
Accelerate Command: Run Model On Multi Gpu
accelerate launch <path/to/script.py> --multi_gpu --num_machines 2 accelerate Operations
Accelerate Command: Estimate Gpu Memory
accelerate estimate-memory <name/model> Adb Connect
Verified for current stable LTS adb-connect Operations
Adb Connect Command: Disconnect Device
adb disconnect <ip_address>:<port> adb-connect Operations
Adb Connect Command: Pair With Android Device
adb pair <ip_address>:<port> adb-connect Operations
Adb Connect Command: Connect To Android Device
adb connect <ip_address>:<port> Acyclic
Verified for current stable LTS acyclic Operations
Acyclic Command: Display Help
acyclic -? acyclic Operations
Acyclic Command: Make Directed Graph Acyclic
acyclic <path/to/input.gv> > <path/to/output.gv> acyclic Operations
Acyclic Command: Check Graph Status
acyclic -v -n <path/to/input.gv> acyclic Operations
Acyclic Command: Make Graph Acyclic
acyclic <path/to/input.gv> > <path/to/output.gv> Act
Verified for current stable LTS act Operations
Act Command: Run Specific Event
act {event_type} act Containers
Act Command: Verbose Logs
act {-v|--verbose} act Operations
Act Command: Run Specific Job
act {-j|--job} {job_id} act Operations
Act Command: List Jobs
act {-l|--list} act Operations
Act Command: Dry Run Actions
act {-n|--dryrun} act Operations
Act Command: Run Workflow Push
act push {-W|--workflows} {path/to/workflow} act Operations
Act Command: Run Default Event
act act Operations
Act Command: Dry Run
act {-n|--dryrun} act Operations
Act Command: Run Workflow Push Event
act push {-W|--workflows} {path/to/workflow} Acme.sh
Verified for current stable LTS acme.sh HTTP
Acme.sh Command: Issue Certificate Webroot
acme.sh --issue {-d|--domain} example.com {-w|--webroot} /path/to/webroot acme.sh HTTP
Acme.sh Command: Issue Certificate Nginx
acme.sh --issue --nginx {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Issue Wildcard Certificate
acme.sh --issue --dns dns_cf {-d|--domain} *.example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Standalone Port80
acme.sh --issue --standalone {-d|--domain} example.com {-d|--domain} www.example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Standalone Tls
acme.sh --issue --alpn {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Apache
acme.sh --issue --apache {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Install Certificate
acme.sh {-i|--install-cert} {-d|--domain} example.com --key-file /path/to/example.com.key --fullchain-file /path/to/example.com.cer --reloadcmd "systemctl force-reload nginx" acme.sh HTTP
Acme.sh Command: Issue Certificate Webroot
acme.sh --issue {-d|--domain} example.com {-w|--webroot} /path/to/webroot acme.sh HTTP
Acme.sh Command: Issue Certificate Nginx
acme.sh --issue --nginx {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Issue Wildcard Certificate Dns Api
acme.sh --issue --dns dns_cf {-d|--domain} *.example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Standalone Port 80
acme.sh --issue --standalone {-d|--domain} example.com {-d|--domain} www.example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Standalone Tls
acme.sh --issue --alpn {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Issue Certificate Apache
acme.sh --issue --apache {-d|--domain} example.com acme.sh HTTP
Acme.sh Command: Install Certificate
acme.sh {-i|--install-cert} {-d|--domain} example.com --key-file /path/to/example.com.key --fullchain-file /path/to/example.com.cer --reloadcmd "systemctl force-reload nginx" Ack
Verified for current stable LTS ack Search
Ack Command: Search Files Containing String
ack "<search_pattern>" ack Search
Ack Command: Limit Search To Specific File Type
ack -t <ruby> "<search_pattern>" ack Search
Ack Command: Print File Names And Match Counts
ack -c -l "<search_pattern>" ack Search
Ack Command: Search Recursive
ack "<search_pattern>" ack Search
Ack Command: Search Case Insensitive Pattern
ack -i "<search_pattern>" ack Search
Ack Command: Search Lines Matching Pattern
ack -o "<search_pattern>" ack Search
Ack Command: Exclude Search Type
ack -t no<ruby> "<search_pattern>" ack Search
Ack Command: Exclude Specific File Type From Search
ack -t no<ruby> "<search_pattern>" ack Search
Ack Command: Count Total Matches Found
ack -c -h "<search_pattern>" ack Operations
Ack Command: List All Types For Help
ack --help-types ack Operations
Ack Command: List Type Values
ack --help-types ack Search
Ack Command: Search Case Insensitive
ack -i "<search_pattern>" ack Search
Ack Command: Output Matched Text
ack -o "<search_pattern>" ack Search
Ack Command: Limit Search Type
ack -t <ruby> "<search_pattern>" ack Search
Ack Command: Count Matches
ack -c -h "<search_pattern>" ack Search
Ack Command: Count Matches Per File
ack -c -l "<search_pattern>" Acme.sh Dns
Verified for current stable LTS acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Dns Alias Mode
acme.sh --issue --dns <dns_cf> --domain <example.com> --challenge-alias <alias-for-example-validation.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Manual Dns Mode
acme.sh --issue --dns --domain <example.com> --yes-I-know-dns-manual-mode-enough-go-ahead-please acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Automatic Dns Api
acme.sh --issue --dns <dns_gd> --domain <example.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Wildcard Certificate Automatic Dns Api
acme.sh --issue --dns <dns_namesilo> --domain <example.com> --domain <*.example.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Custom Wait Time
acme.sh --issue --dns <dns_namecheap> --domain <example.com> --dnssleep <300> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Dns Alias
acme.sh --issue --dns <dns_cf> --domain <example.com> --challenge-alias <alias-for-example-validation.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Automatic Dns
acme.sh --issue --dns <dns_gd> --domain <example.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Wildcard Certificate Automatic Dns
acme.sh --issue --dns <dns_namesilo> --domain <example.com> --domain <*.example.com> acme.sh-dns HTTP
Acme.sh Dns Command: Issue Certificate Manual Dns
acme.sh --issue --dns --domain <example.com> --yes-I-know-dns-manual-mode-enough-go-ahead-please Adb Devices
Verified for current stable LTS adb-devices Operations
Adb Devices Command: List Connected Android Devices
adb devices adb-devices Operations
Adb Devices Command: List Devices And Their System Info
adb devices -l adb-devices Operations
Adb Devices Command: List Connected Devices
adb devices adb-devices Operations
Adb Devices Command: List Devices With System Info
adb devices -l Adb Pair
Verified for current stable LTS adb-pair Operations
Adb Pair Command: Pair Device
adb pair <ip_address:port> adb-pair Operations
Adb Pair Command: Connect Device
adb connect <ip_address:port> adb-pair Operations
Adb Pair Command: Adb Pair
adb pair Adb Forward
Verified for current stable LTS adb-forward Operations
Adb Forward Command: List All Forwardings
adb forward --list adb-forward Operations
Adb Forward Command: Remove All Forwarding Rules
adb forward --remove-all adb-forward Operations
Adb Forward Command: Forward Tcp Port To Connected Device
adb forward tcp:<local_port> tcp:<remote_port> adb-forward Operations
Adb Forward Command: Forward Tcp Port To Specific Device
adb -s <device_ID> forward tcp:<local_port> tcp:<remote_port> adb-forward Operations
Adb Forward Command: Remove Forwarding Rule
adb forward --remove tcp:<local_port> adb-forward Operations
Adb Forward Command: List Forwardings
adb forward --list adb-forward Operations
Adb Forward Command: Forward Socket To Device
adb forward tcp:<local_port> tcp:<remote_port> adb-forward Operations
Adb Forward Command: Forward Socket To Specific Device
adb -s <device_ID> forward tcp:<local_port> tcp:<remote_port> adb-forward Operations
Adb Forward Command: Remove Forwarding Rule
adb forward --remove tcp:<local_port> adb-forward Operations
Adb Forward Command: Remove All Forwarding Rules
adb forward --remove-all Adb Reverse
Verified for current stable LTS adb-reverse Operations
Adb Reverse Command: Remove Reverse Socket Connection
adb reverse --remove tcp:<remote_port> adb-reverse Operations
Adb Reverse Command: Reverse Tcp Port From Device To Localhost
adb reverse tcp:<remote_port> tcp:<local_port> adb-reverse Operations
Adb Reverse Command: Reverse Tcp Port From Specific Device To Localhost
adb -s <device_ID> reverse tcp:<remote_port> tcp:<local_port> adb-reverse Operations
Adb Reverse Command: List Reverse Socket Connections
adb reverse --list adb-reverse Operations
Adb Reverse Command: Remove All Reverse Socket Connections
adb reverse --remove-all adb-reverse Operations
Adb Reverse Command: Reverse Tcp Port Default Device
adb reverse tcp:<remote_port> tcp:<local_port> adb-reverse Operations
Adb Reverse Command: Reverse Tcp Port Specific Device
adb -s <device_ID> reverse tcp:<remote_port> tcp:<local_port> Adb Shell Pm
Verified for current stable LTS adb-shell-pm Operations
Adb Shell Pm Command: Clear App Data
adb shell pm clear <package> adb-shell-pm Operations
Adb Shell Pm Command: List Installed Packages
adb shell pm list packages adb-shell-pm Operations
Adb Shell Pm Command: Install App Package
adb shell pm install /<path/to/app>.apk adb-shell-pm Operations
Adb Shell Pm Command: Uninstall Package
adb shell pm uninstall <package> adb-shell-pm Operations
Adb Shell Pm Command: Enable Package
adb shell pm enable <package_or_class> adb-shell-pm Operations
Adb Shell Pm Command: Disable Package
adb shell pm disable-user <package_or_class> adb-shell-pm Operations
Adb Shell Pm Command: List Packages
adb shell pm list packages adb-shell-pm Operations
Adb Shell Pm Command: Grant Permission
adb shell pm grant <package> <android.permission.CAMERA|android.permission.ACCESS_FINE_LOCATION|android.permission.READ_CONTACTS|...> adb-shell-pm Operations
Adb Shell Pm Command: Revoke Permission
adb shell pm revoke <package> <android.permission.CAMERA|android.permission.ACCESS_FINE_LOCATION|android.permission.READ_CONTACTS|...> adb-shell-pm Operations
Adb Shell Pm Command: Install Package
adb shell pm install /<path/to/app>.apk Adb Uninstall
Verified for current stable LTS adb-uninstall Operations
Adb Uninstall Command: Uninstall Package
adb uninstall <com.example.app> adb-uninstall Operations
Adb Uninstall Command: Uninstall Package Keep User Data
adb uninstall -k <com.example.app> adb-uninstall Operations
Adb Uninstall Command: Uninstall Package Keep Data
adb uninstall -k <com.example.app> Adb
Verified for current stable LTS adb Operations
Adb Command: Kill Server
adb kill-server adb Operations
Adb Command: Push File
adb push <path/to/local_file_or_directory> <path/to/device_destination_directory> adb Operations
Adb Command: Install App
adb install -r <path/to/file>.apk adb Operations
Adb Command: Pull File
adb pull <path/to/device_file_or_directory> <path/to/local_destination_directory> adb Archive
Adb Command: Start Server
adb start-server adb Operations
Adb Command: Shell
adb shell adb Operations
Adb Command: List Devices
adb devices adb Operations
Adb Command: Specify Device
adb -s <device_ID> <shell> adb Operations
Adb Command: Pull
adb pull <path/to/device_file_or_directory> <path/to/local_destination_directory> adb Operations
Adb Command: Devices
adb devices adb Operations
Adb Command: Install
adb install -r <path/to/file>.apk adb Operations
Adb Command: Push
adb push <path/to/local_file_or_directory> <path/to/device_destination_directory> adb Operations
Adb Command: Select Device
adb -s <device_ID> <shell> Adb Shell
Verified for current stable LTS adb-shell Archive
Adb Shell Command: Start Remote Shell
adb shell adb-shell Operations
Adb Shell Command: Revoke Dangerous Permission
adb shell pm revoke <package> <permission> adb-shell Archive
Adb Shell Command: Start Home Activity
adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN adb-shell HTTP
Adb Shell Command: Get Properties
adb shell getprop adb-shell Operations
Adb Shell Command: Reset Runtime Permissions
adb shell pm reset-permissions adb-shell Operations
Adb Shell Command: Trigger Key Event
adb shell input keyevent <keycode> adb-shell Operations
Adb Shell Command: Clear Application Data
adb shell pm clear <package> adb-shell Archive
Adb Shell Command: Start Activity
adb shell am start -n <package>/<activity> adb-shell HTTP
Adb Shell Command: Get All Properties
adb shell getprop Adb Logcat
Verified for current stable LTS adb-logcat Containers
Adb Logcat Command: Display Logs By Pid
adb logcat --pid <pid> adb-logcat Containers
Adb Logcat Command: Display Logs With Warning Priority
adb logcat *:W adb-logcat Operations
Adb Logcat Command: Color Log Output
adb logcat -v color adb-logcat Containers
Adb Logcat Command: Display Logs For Package
adb logcat --pid $(adb shell pidof -s <package>) adb-logcat Search
Adb Logcat Command: Display Logs Matching Regex
adb logcat -e <regex> adb-logcat Containers
Adb Logcat Command: Display Logs For Specific Tag
adb logcat <tag>:<mode> *:S adb-logcat Containers
Adb Logcat Command: Display Logs For React Native Apps
adb logcat ReactNative:V ReactNativeJS:V *:S adb-logcat Containers
Adb Logcat Command: Display Logs For Specific Pid
adb logcat --pid <pid> adb-logcat Containers
Adb Logcat Command: Display Logs For Package Process
adb logcat --pid $(adb shell pidof -s <package>) adb-logcat Containers
Adb Logcat Command: Display System Logs
adb logcat adb-logcat Search
Adb Logcat Command: Display Matching Lines
adb logcat -e <regex> adb-logcat Containers
Adb Logcat Command: Display Logs With Warning Level
adb logcat *:W adb-logcat Containers
Adb Logcat Command: Colorize Logs
adb logcat -v color adb-logcat Containers
Adb Logcat Command: Display Logs By Tag And Mode
adb logcat <tag>:<mode> *:S adb-logcat Containers
Adb Logcat Command: Display React Native Logs
adb logcat ReactNative:V ReactNativeJS:V *:S Adb Install
Verified for current stable LTS adb-install Operations
Adb Install Command: Reinstall Existing App Keeping Data
adb install -r <path/to/file>.apk adb-install Operations
Adb Install Command: Update Installed Package Fast
adb install --fastdeploy <path/to/file>.apk adb-install Operations
Adb Install Command: Install App Specific Device
adb -s <serial_number> install <path/to/file>.apk adb-install Operations
Adb Install Command: Push Application To Device
adb install <path/to/file>.apk adb-install Operations
Adb Install Command: Push Application To Specific Device
adb -s <serial_number> install <path/to/file>.apk adb-install Operations
Adb Install Command: Allow Version Code Downgrade
adb install -d <path/to/file>.apk adb-install Operations
Adb Install Command: Grant All Permissions
adb install -g <path/to/file>.apk adb-install Operations
Adb Install Command: Install App Allow Downgrade
adb install -d <path/to/file>.apk adb-install Operations
Adb Install Command: Install App Grant Permissions
adb install -g <path/to/file>.apk adb-install Operations
Adb Install Command: Install App Fastdeploy
adb install --fastdeploy <path/to/file>.apk adb-install Operations
Adb Install Command: Install App
adb install <path/to/file>.apk adb-install Operations
Adb Install Command: Reinstall App Keep Data
adb install -r <path/to/file>.apk Adb Reboot
Verified for current stable LTS adb-reboot Operations
Adb Reboot Command: Reboot Device Recovery
adb reboot recovery adb-reboot Operations
Adb Reboot Command: Reboot Device Normally
adb reboot adb-reboot Operations
Adb Reboot Command: Reboot Device Bootloader
adb reboot bootloader adb-reboot Operations
Adb Reboot Command: Reboot Device Fastboot
adb reboot fastboot adb-reboot Operations
Adb Reboot Command: Reboot
adb reboot adb-reboot Operations
Adb Reboot Command: Reboot Bootloader
adb reboot bootloader adb-reboot Operations
Adb Reboot Command: Reboot Recovery
adb reboot recovery adb-reboot Operations
Adb Reboot Command: Reboot Fastboot
adb reboot fastboot Adb Shell Pm List
Verified for current stable LTS adb-shell-pm-list Operations
Adb Shell Pm List Command: Print All Users
adb shell pm list users adb-shell-pm-list Operations
Adb Shell Pm List Command: List All Test Packages
adb shell pm list instrumentation adb-shell-pm-list Operations
Adb Shell Pm List Command: List All Installed Packages
adb shell pm list packages adb-shell-pm-list Operations
Adb Shell Pm List Command: Print All Known Permission Groups
adb shell pm list permission-groups adb-shell-pm-list Operations
Adb Shell Pm List Command: Print All Known Permissions
adb shell pm list permissions adb-shell-pm-list Operations
Adb Shell Pm List Command: Print All Features
adb shell pm list features adb-shell-pm-list Operations
Adb Shell Pm List Command: Print All Supported Libraries
adb shell pm list libraries adb-shell-pm-list Operations
Adb Shell Pm List Command: List Packages
adb shell pm list packages adb-shell-pm-list Operations
Adb Shell Pm List Command: List Users
adb shell pm list users adb-shell-pm-list Operations
Adb Shell Pm List Command: List Permission Groups
adb shell pm list permission-groups adb-shell-pm-list Operations
Adb Shell Pm List Command: List Permissions
adb shell pm list permissions adb-shell-pm-list Operations
Adb Shell Pm List Command: List Instrumentation
adb shell pm list instrumentation adb-shell-pm-list Operations
Adb Shell Pm List Command: List Features
adb shell pm list features adb-shell-pm-list Operations
Adb Shell Pm List Command: List Libraries
adb shell pm list libraries Adb Shell Pm List Packages
Verified for current stable LTS adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List All Installed Packages
adb shell pm list packages adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List Packages With Apk Paths
adb shell pm list packages -f adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List Disabled Packages
adb shell pm list packages -d adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List Enabled Packages
adb shell pm list packages -e adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List System Packages
adb shell pm list packages -s adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List Third Party Packages
adb shell pm list packages -3 adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: Show Package Installers
adb shell pm list packages -i adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List All Packages
adb shell pm list packages adb-shell-pm-list-packages Operations
Adb Shell Pm List Packages Command: List Packages Apk Paths
adb shell pm list packages -f Addcomputer.py
Verified for current stable LTS addcomputer.py Operations
Addcomputer.py Command: Set Password For Existing Computer
addcomputer.py -no-add -computer-name <COMPUTER_NAME$> -computer-pass <computer_password> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Add Computer With Name And Password
addcomputer.py -computer-name <COMPUTER_NAME$> -computer-pass <computer_password> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Delete Computer Account
addcomputer.py -delete -computer-name <COMPUTER_NAME$> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Add Computer With Kerberos Auth
addcomputer.py -k -no-pass <domain>/<username>@<hostname> addcomputer.py Operations
Addcomputer.py Command: Add Computer Via Ldaps
addcomputer.py -method LDAPS -port 636 <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Specify Domain Controller
addcomputer.py -dc-host <hostname> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Set Password
addcomputer.py -no-add -computer-name <COMPUTER_NAME$> -computer-pass <computer_password> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Add Computer LDAPS
addcomputer.py -method LDAPS -port 636 <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Add Computer
addcomputer.py -computer-name <COMPUTER_NAME$> -computer-pass <computer_password> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Delete Computer
addcomputer.py -delete -computer-name <COMPUTER_NAME$> <domain>/<username>:<password> addcomputer.py Operations
Addcomputer.py Command: Add Computer Kerberos
addcomputer.py -k -no-pass <domain>/<username>@<hostname> Airdecap Ng
Verified for current stable LTS airdecap-ng Operations
Airdecap Ng Command: Decrypt Wep Capture
airdecap-ng -w <hex_key> <path/to/capture.cap> airdecap-ng HTTP
Airdecap Ng Command: Remove Headers From Open Capture
airdecap-ng -b <ap_mac> <path/to/capture.cap> airdecap-ng Operations
Airdecap Ng Command: Decrypt Wpa Wpa2 Capture
airdecap-ng -e <essid> -p <password> <path/to/capture.cap> airdecap-ng HTTP
Airdecap Ng Command: Decrypt Wpa Wpa2 Capture Preserving Headers
airdecap-ng -l -e <essid> -p <password> <path/to/capture.cap> airdecap-ng Operations
Airdecap Ng Command: Decrypt Wpa Wpa2 Capture With Mac Filter
airdecap-ng -b <ap_mac> -e <essid> -p <password> <path/to/capture.cap> airdecap-ng Operations
Airdecap Ng Command: Decrypt Wpa Wpa2
airdecap-ng -e <essid> -p <password> <path/to/capture.cap> airdecap-ng HTTP
Airdecap Ng Command: Remove Wireless Headers
airdecap-ng -b <ap_mac> <path/to/capture.cap> airdecap-ng Operations
Airdecap Ng Command: Decrypt Wep
airdecap-ng -w <hex_key> <path/to/capture.cap> airdecap-ng HTTP
Airdecap Ng Command: Decrypt Wpa Wpa2 Preserve Headers
airdecap-ng -l -e <essid> -p <password> <path/to/capture.cap> airdecap-ng Operations
Airdecap Ng Command: Decrypt Wpa Wpa2 With Mac Filter
airdecap-ng -b <ap_mac> -e <essid> -p <password> <path/to/capture.cap> Airodump Ng
Verified for current stable LTS airodump-ng Operations
Airodump Ng Command: Capture Packets Both Bands
sudo airodump-ng <interface> --band abg airodump-ng Operations
Airodump Ng Command: Capture Packets 2.4ghz
sudo airodump-ng <interface> airodump-ng Operations
Airodump Ng Command: Capture Packets 5ghz
sudo airodump-ng <interface> --band a airodump-ng Operations
Airodump Ng Command: Capture Packets With Mac And Channel
sudo airodump-ng --channel <channel> --write <path/to/file> --bssid <mac> <interface> airodump-ng Operations
Airodump Ng Command: Capture Specific Network
sudo airodump-ng --channel <channel> --write <path/to/file> --bssid <mac> <interface> airodump-ng Operations
Airodump Ng Command: Capture 2.4GHz
sudo airodump-ng <interface> airodump-ng Operations
Airodump Ng Command: Capture 5GHz
sudo airodump-ng <interface> --band a airodump-ng Operations
Airodump Ng Command: Capture Both Bands
sudo airodump-ng <interface> --band abg Autoconf
Verified for current stable LTS autoconf Operations
Autoconf Command: Generate Config Script Default
autoconf autoconf Operations
Autoconf Command: Generate Config Script Stdout
autoconf <template-file> autoconf Operations
Autoconf Command: Generate Config Script Force Output
autoconf -f -o <outfile> <template-file> autoconf Operations
Autoconf Command: Generate Configuration Script From Default
autoconf autoconf Operations
Autoconf Command: Generate Configuration Script From Template
autoconf <template-file> autoconf Operations
Autoconf Command: Generate Configuration Script With Force And Output
autoconf -f -o <outfile> <template-file> Adguardhome
Verified for current stable LTS adguardhome Operations
Adguardhome Command: Reload Service Configuration
AdGuardHome --service reload adguardhome Operations
Adguardhome Command: Install Or Uninstall Service
AdGuardHome --service <install|uninstall> adguardhome Operations
Adguardhome Command: Run Adguard Home
AdGuardHome adguardhome Operations
Adguardhome Command: Store Data In Specific Directory
AdGuardHome --work-dir <path/to/directory> adguardhome Archive
Adguardhome Command: Start Adguard Home Service
AdGuardHome --service start adguardhome Archive
Adguardhome Command: Stop Or Restart Service
AdGuardHome --service <stop|restart> adguardhome Operations
Adguardhome Command: Specify Configuration File
AdGuardHome --config <path/to/AdGuardHome.yaml> adguardhome Operations
Adguardhome Command: Set Work Directory
AdGuardHome --work-dir <path/to/directory> adguardhome Archive
Adguardhome Command: Start Service
AdGuardHome --service start adguardhome Operations
Adguardhome Command: Install Uninstall Service
AdGuardHome --service <install|uninstall> adguardhome Archive
Adguardhome Command: Stop Restart Service
AdGuardHome --service <stop|restart> Age Keygen
Verified for current stable LTS age-keygen Operations
Age Keygen Command: Convert Identity To Recipient
age-keygen -y path/to/file age-keygen Operations
Age Keygen Command: Generate Key Pair
age-keygen {-o|--output} path/to/file Age
Verified for current stable LTS age Operations
Age Command: Decrypt File With Passphrase
age -d -o <path/to/decrypted_file> <path/to/encrypted_file.age> age Operations
Age Command: Encrypt File With Public Keys Literals
age {-r|--recipient} public_key {-o|--output} path/to/encrypted_file.age path/to/unencrypted_file age Operations
Age Command: Generate Encrypted File With Passphrase
age -p -o <path/to/encrypted_file.age> <path/to/unencrypted_file> age Operations
Age Command: Encrypt File With Recipients File
age -R <path/to/recipients_file.txt> -o <path/to/encrypted_file.age> <path/to/unencrypted_file> age Operations
Age Command: Decrypt File With Private Key
age -d -i <path/to/private_key_file> -o <path/to/decrypted_file> <path/to/encrypted_file.age> age Operations
Age Command: Encrypt File With Public Keys
age -r <public_key> -o <path/to/encrypted_file.age> <path/to/unencrypted_file> Airpaste
Verified for current stable LTS airpaste Operations
Airpaste Command: Wait For Message
airpaste airpaste Operations
Airpaste Command: Send Text
echo <text> | airpaste airpaste Operations
Airpaste Command: Send File
airpaste < <path/to/file> airpaste Operations
Airpaste Command: Receive File
airpaste > <path/to/file> airpaste Operations
Airpaste Command: Create Or Join Channel
airpaste <channel_name> Agate
Verified for current stable LTS agate Operations
Agate Command: Run Server
agate <path/to/file> agate Operations
Agate Command: Display Help
agate -h agate HTTP
Agate Command: Run And Generate Private Key And Certificate
agate --content <path/to/content>/ --addr {[::]:1965} --addr {0.0.0.0:1965} --hostname <example.com> --lang <en-US> agate Operations
Agate Command: Run Server
agate <path/to/file> agate HTTP
Agate Command: Run And Generate Private Key And Certificate
agate --content <path/to/content>/ --addr {[::]:1965} --addr {0.0.0.0:1965} --hostname <example.com> --lang <en-US> agate Operations
Agate Command: Display Help
agate -h Adscript
Verified for current stable LTS adscript Operations
Adscript Command: Compile To Llvm Ir
adscript --llvm-ir --output <path/to/file.ll> <path/to/input_file.adscript> adscript Operations
Adscript Command: Compile File To Object
adscript --output <path/to/file.o> <path/to/input_file.adscript> adscript Operations
Adscript Command: Compile And Link To Executable
adscript --executable --output <path/to/file> <path/to/input_file.adscript> adscript HTTP
Adscript Command: Cross Compile To Object
adscript --target-triple <i386-linux-elf> --output <path/to/file.o> <path/to/input_file.adscript> adscript Operations
Adscript Command: Compile Link Standalone Executable
adscript --executable --output <path/to/file> <path/to/input_file.adscript> adscript Operations
Adscript Command: Compile Object File
adscript --output <path/to/file.o> <path/to/input_file.adscript> adscript Operations
Adscript Command: Compile To Llvm Ir
adscript --llvm-ir --output <path/to/file.ll> <path/to/input_file.adscript> adscript HTTP
Adscript Command: Cross Compile Object File
adscript --target-triple <i386-linux-elf> --output <path/to/file.o> <path/to/input_file.adscript> Ag
Verified for current stable LTS ag Search
Ag Command: Search For String
ag string ag Search
Ag Command: Search For String Case Insensitively
ag -i -o STRING ag Search
Ag Command: Search For Filename Pattern
ag -g string ag Search
Ag Command: Search For String In Directory
ag string <path/to/directory> ag Search
Ag Command: List Filenames With Matches
ag -l string ag Search
Ag Command: Search For String With File Name Regex
ag string -G file_name ag Search
Ag Command: Search With Regex
ag '<^ca(t|r)$>' ag Search
Ag Command: Search In Context
ag string ag Search
Ag Command: Search By Filename Pattern
ag string -G file_name ag Search
Ag Command: Search In Directory
ag string <path/to/directory> ag Search
Ag Command: List Filenames With Matches
ag -l string ag Search
Ag Command: Case Insensitive Only Matching
ag -i -o STRING ag Search
Ag Command: Search Contents With Regex
ag '<^ca(t|r)$>' ag Search
Ag Command: Search By Filename
ag -g string Agg
Verified for current stable LTS agg Operations
Agg Command: Display Help
agg -h agg Video
Agg Command: Create Gif
agg <path/to/demo.cast> <path/to/demo.gif> agg Video
Agg Command: Create Gif With Dimensions
agg --cols 80 --rows 25 <path/to/demo.cast> <path/to/demo.gif> agg Video
Agg Command: Create Gif With Font Size
agg --font-size 24 <path/to/demo.cast> <path/to/demo.gif> agg Video
Agg Command: Create Gif
agg <path/to/demo.cast> <path/to/demo.gif> agg Operations
Agg Command: Display Help
agg -h agg Video
Agg Command: Create Gif With Dimensions
agg --cols 80 --rows 25 <path/to/demo.cast> <path/to/demo.gif> agg Video
Agg Command: Create Gif With Font Size
agg --font-size 24 <path/to/demo.cast> <path/to/demo.gif> Aider
Verified for current stable LTS aider Operations
Aider Command: Add Features Or Test Cases
aider <path/to/file1 path/to/file2 ...> aider Operations
Aider Command: Refactor Code
aider <path/to/file> --refactor aider Archive
Aider Command: Start Project Or Work With Existing Code Base
aider --model <model_name> --api-key <your_api_key> aider Operations
Aider Command: Describe And Fix Bug
aider <path/to/file> --describe "<bug_description>" aider Operations
Aider Command: Update Documentation
aider <path/to/file> --update-docs aider Operations
Aider Command: Display Help
aider --help aider Operations
Aider Command: Describe And Fix Bug
aider <path/to/file> --describe "<bug_description>" aider Archive
Aider Command: Start Project Or Work With Existing Code Base
aider --model <model_name> --api-key <your_api_key> aider Operations
Aider Command: Add New Features Or Test Cases To Specific Files
aider <path/to/file1 path/to/file2 ...> aider Operations
Aider Command: Refactor Code In Specific File
aider <path/to/file> --refactor aider Operations
Aider Command: Update Documentation
aider <path/to/file> --update-docs aider Operations
Aider Command: Display Help
aider --help Aircrack Ng
Verified for current stable LTS aircrack-ng Operations
Aircrack Ng Command: Crack Key With Multiple Cpu Threads Using Wordlist
aircrack-ng -p <number> -w <path/to/wordlist.txt> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key From Capture File Using Wordlist And Bssid
aircrack-ng -w <path/to/wordlist.txt> --bssid <mac> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key From Capture File Using Wordlist And Ssid
aircrack-ng -w <path/to/wordlist.txt> -e <essid> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key From Capture File Using Wordlist
aircrack-ng -w <path/to/wordlist.txt> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key Using Ssid
aircrack-ng -w <path/to/wordlist.txt> -e <essid> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key Using Multiple Cpu Threads
aircrack-ng -p <number> -w <path/to/wordlist.txt> <path/to/capture.cap> aircrack-ng Operations
Aircrack Ng Command: Crack Key Using Mac Address
aircrack-ng -w <path/to/wordlist.txt> --bssid <mac> <path/to/capture.cap> Airmon Ng
Verified for current stable LTS airmon-ng Operations
Airmon Ng Command: List Wireless Devices Statuses
sudo airmon-ng airmon-ng Archive
Airmon Ng Command: Turn On Monitor Mode
sudo airmon-ng start <wlan0> airmon-ng Operations
Airmon Ng Command: Turn Off Monitor Mode
sudo airmon-ng stop <wlan0mon> airmon-ng Operations
Airmon Ng Command: Kill Disturbing Processes
sudo airmon-ng check kill airmon-ng Operations
Airmon Ng Command: Stop Monitor Mode
sudo airmon-ng stop <wlan0mon> airmon-ng Operations
Airmon Ng Command: List Devices
sudo airmon-ng airmon-ng Archive
Airmon Ng Command: Start Monitor Mode
sudo airmon-ng start <wlan0> Alr Version
Verified for current stable LTS alr-version Operations
Alr Version Command: Display Version
alr --version alr-version Operations
Alr Version Command: Display Alire Environment Version
alr version Alias
Verified for current stable LTS alias Operations
Alias Command: List All Aliases
alias alias Operations
Alias Command: Remove Alias
unalias <word> alias Operations
Alias Command: Interactive Rm Alias
alias <rm>="<rm --interactive>" alias Operations
Alias Command: Shortcut Ls All
alias <la>="<ls --all>" alias Operations
Alias Command: Create Generic Alias
alias <word>="<command>" alias Operations
Alias Command: View Alias Command
alias <word> alias Operations
Alias Command: Create La Shortcut
alias <la>="<ls --all>" alias Operations
Alias Command: Remove Aliased Command
unalias <word> alias Operations
Alias Command: Turn Rm Into Interactive
alias <rm>="<rm --interactive>" Assimp
Verified for current stable LTS assimp Operations
Assimp Command: Display Help
assimp help assimp Operations
Assimp Command: List Supported Import Formats
assimp listext assimp Operations
Assimp Command: Display File Summary
assimp info <path/to/file> assimp Operations
Assimp Command: List Supported Export Formats
assimp listexport assimp Operations
Assimp Command: Display Help Specific Subcommand
assimp <subcommand> --help assimp Operations
Assimp Command: Convert File Default Parameters
assimp export <input_file.stl> <output_file.obj> assimp Operations
Assimp Command: Convert File Custom Parameters
assimp export <input_file.stl> <output_file.obj> <parameters> assimp Operations
Assimp Command: Display Help Subcommand
assimp <subcommand> --help Alex
Verified for current stable LTS alex Operations
Alex Command: Analyze Text From Stdin
echo <His network looks good> | alex --stdin alex Operations
Alex Command: Analyze All Files In Current Directory
alex alex Operations
Alex Command: Analyze Markdown Files Excluding Example
alex *.md !<example.md> alex Operations
Alex Command: Analyze Specific File
alex <path/to/file.md> alex Operations
Alex Command: Analyze Text Stdin
echo <His network looks good> | alex --stdin alex Operations
Alex Command: Analyze All Files
alex alex Operations
Alex Command: Analyze All Markdown Except Specific
alex *.md !<example.md> Alembic
Verified for current stable LTS alembic Operations
Alembic Command: Create Autogenerate Migration
alembic revision --autogenerate -m "<message>" alembic Operations
Alembic Command: Show Migration History
alembic history alembic Operations
Alembic Command: Initialize Alembic
alembic init <path/to/directory> alembic Operations
Alembic Command: Upgrade Database
alembic upgrade head alembic Operations
Alembic Command: Downgrade Database
alembic downgrade -1 alembic Operations
Alembic Command: Upgrade Database
alembic upgrade head alembic Operations
Alembic Command: Initialize
alembic init <path/to/directory> alembic Operations
Alembic Command: Create Revision
alembic revision --autogenerate -m "<message>" alembic Operations
Alembic Command: Downgrade Database
alembic downgrade -1 alembic Operations
Alembic Command: Show History
alembic history Ajson
Verified for current stable LTS ajson HTTP
Ajson Command: Calculate Value From Simple Json
echo '<3>' | ajson '<2 * pi * $>' ajson HTTP
Ajson Command: Read Json From File
ajson '<$..json[?(@.path)]>' <path/to/file.json> ajson HTTP
Ajson Command: Read Json From Stdin
cat <path/to/file.json> | ajson '<$..json[?(@.path)]>' ajson HTTP
Ajson Command: Read Json From Url
ajson '<avg($..price)>' '{https://example.com/api/}' ajson HTTP
Ajson Command: Read Json From Stdin
cat <path/to/file.json> | ajson '<$..json[?(@.path)]>' ajson HTTP
Ajson Command: Calculate Value From Json
echo '<3>' | ajson '<2 * pi * $>' ajson HTTP
Ajson Command: Read Json From File
ajson '<$..json[?(@.path)]>' <path/to/file.json> ajson HTTP
Ajson Command: Read Json From Url
ajson '<avg($..price)>' '{https://example.com/api/}' Alacritty
Verified for current stable LTS alacritty Archive
Alacritty Command: Start New Alacritty Process
alacritty alacritty Operations
Alacritty Command: Execute Command In New Window
alacritty -e <command> alacritty Archive
Alacritty Command: Start Alacritty Daemon
alacritty --daemon alacritty Operations
Alacritty Command: Use Alternative Config
alacritty --config-file <path/to/config.toml> alacritty Operations
Alacritty Command: Create New Window
alacritty msg create-window alacritty Archive
Alacritty Command: Start Shell In Directory
alacritty --working-directory <path/to/directory> alacritty Operations
Alacritty Command: Execute Command
alacritty -e <command> alacritty Archive
Alacritty Command: Start New Process
alacritty alacritty Archive
Alacritty Command: Start Daemon
alacritty --daemon alacritty Operations
Alacritty Command: Use Alternative Config File
alacritty --config-file <path/to/config.toml> Alr
Verified for current stable LTS alr Operations
Alr Command: Add Dependency
alr add <crate> alr Operations
Alr Command: Manage Ada Packages
alr alr Operations
Alr Command: Create Project
alr init --bin <project_name> alr Operations
Alr Command: Run Binary
alr run alr Operations
Alr Command: Compile Project
alr build --<release alr Operations
Alr Command: Create Project
alr init --bin <project_name> alr Operations
Alr Command: Run Binary
alr run alr Operations
Alr Command: Add Dependency
alr add <crate> alr Operations
Alr Command: Compile Project
alr build --release Amass Enum
Verified for current stable LTS amass-enum Operations
Amass Enum Command: Find Passive Subdomains
amass enum -d <domain_name> amass-enum Operations
Amass Enum Command: Save Terminal Output And Detailed Output
amass enum -o <output_file> -dir <path/to/directory> -d <domain_name> amass-enum Operations
Amass Enum Command: Find Active Subdomains With Verification
amass enum -active -d <domain_name> -p <80,443,8080> amass-enum Search
Amass Enum Command: Brute Force Subdomain Search
amass enum -brute -d <domain_name> amass-enum Operations
Amass Enum Command: Save Results To File
amass enum -o <output_file> -d <domain_name> amass-enum Operations
Amass Enum Command: List Data Sources
amass enum -list amass-enum Operations
Amass Enum Command: Brute Force Subdomains
amass enum -brute -d <domain_name> amass-enum Operations
Amass Enum Command: List Data Sources
amass enum -list amass-enum Operations
Amass Enum Command: Find Subdomains Passively
amass enum -d <domain_name> amass-enum Operations
Amass Enum Command: Find Subdomains Actively
amass enum -active -d <domain_name> -p <80,443,8080> amass-enum Operations
Amass Enum Command: Save Results To File
amass enum -o <output_file> -d <domain_name> amass-enum Operations
Amass Enum Command: Save Output And Detailed Results
amass enum -o <output_file> -dir <path/to/directory> -d <domain_name> Amass
Verified for current stable LTS amass Operations
Amass Command: Display Help
amass -help amass Operations
Amass Command: Execute Amass Subcommand
amass <intel|enum> <options> amass Operations
Amass Command: Display Subcommand Help
amass <intel|enum> -help amass Operations
Amass Command: Display Version
amass -version amass Operations
Amass Command: Display Help
amass -help amass Operations
Amass Command: Execute Subcommand
amass <intel|enum> <options> amass Operations
Amass Command: Display Subcommand Help
amass <intel|enum> -help amass Operations
Amass Command: Display Version
amass -version Androguard
Verified for current stable LTS androguard Operations
Androguard Command: Display App Metadata
androguard apkid <path/to/app>.apk androguard Operations
Androguard Command: Display Android App Manifest
androguard axml <path/to/app>.apk androguard Operations
Androguard Command: Decompile Java Code From App
androguard decompile <path/to/app>.apk --output <path/to/directory> androguard Operations
Androguard Command: Decompile Java Code
androguard decompile <path/to/app>.apk --output <path/to/directory> androguard Operations
Androguard Command: Display App Manifest
androguard axml <path/to/app>.apk androguard Operations
Androguard Command: Display App Metadata
androguard apkid <path/to/app>.apk Animdl
Verified for current stable LTS animdl HTTP
Animdl Command: Download Anime
animdl download "<anime_title>" animdl Operations
Animdl Command: Grab Stream Url
animdl grab "<anime_title>" animdl Operations
Animdl Command: Stream Anime
animdl stream "<anime_title>" animdl Operations
Animdl Command: Upcoming Anime Schedule
animdl schedule animdl HTTP
Animdl Command: Download Anime Range
animdl download "<anime_title>" -r <start_episode>-<end_episode> animdl HTTP
Animdl Command: Download Anime Directory
animdl download "<anime_title>" -d <path/to/directory> animdl Search
Animdl Command: Search Anime
animdl search "<anime_title>" animdl Operations
Animdl Command: Stream Latest Anime Episode
animdl stream "<anime_title>" -s latest animdl HTTP
Animdl Command: Download Anime Directory
animdl download "<anime_title>" -d <path/to/directory> animdl Operations
Animdl Command: Upcoming Anime Schedule
animdl schedule animdl HTTP
Animdl Command: Download Anime
animdl download "<anime_title>" animdl HTTP
Animdl Command: Download Anime Range
animdl download "<anime_title>" -r <start_episode>-<end_episode> animdl Operations
Animdl Command: Grab Stream Url
animdl grab "<anime_title>" animdl Search
Animdl Command: Search Anime
animdl search "<anime_title>" animdl Operations
Animdl Command: Stream Anime
animdl stream "<anime_title>" animdl Operations
Animdl Command: Stream Latest Episode
animdl stream "<anime_title>" -s latest Amass Intel
Verified for current stable LTS amass-intel Operations
Amass Intel Command: Use Active Recon Methods
amass intel -active -addr <192.168.0.1-254> amass-intel Operations
Amass Intel Command: Find Root Domains Belonging To Asn
amass intel -asn <asn> amass-intel Operations
Amass Intel Command: Find Root Domains In Ip Address Range
amass intel -addr <192.168.0.1-254> amass-intel Operations
Amass Intel Command: Find Asns Belonging To Organisation
amass intel -org <organisation_name> amass-intel Operations
Amass Intel Command: List Available Data Sources
amass intel -list amass-intel Operations
Amass Intel Command: Find Root Domains Related To Domain
amass intel -whois -d <domain_name> amass-intel Operations
Amass Intel Command: Save Results To Text File
amass intel -o <output_file> -whois -d <domain_name> amass-intel Operations
Amass Intel Command: Active Recon Methods
amass intel -active -addr <192.168.0.1-254> amass-intel Operations
Amass Intel Command: List Data Sources
amass intel -list amass-intel Operations
Amass Intel Command: Find Root Domains In Ip Range
amass intel -addr <192.168.0.1-254> amass-intel Operations
Amass Intel Command: Find ASNs For Organisation
amass intel -org <organisation_name> amass-intel Operations
Amass Intel Command: Find Root Domains By Asn
amass intel -asn <asn> Ansible
Verified for current stable LTS ansible Operations
Ansible Command: Execute Command
ansible <group> -m command -a '<my_command>' ansible Operations
Ansible Command: List Groups In Inventory
ansible localhost -m debug -a '<var=groups.keys()>' ansible Operations
Ansible Command: List Hosts
ansible <group> --list-hosts ansible Operations
Ansible Command: Ping Group
ansible <group> -m ping ansible Operations
Ansible Command: Display Facts
ansible <group> -m setup ansible Operations
Ansible Command: Execute Command Admin
ansible <group> -b --ask-become-pass -m command -a '<my_command>' ansible Operations
Ansible Command: Execute Command Custom Inventory
ansible <group> -i <inventory_file> -m command -a '<my_command>' ansible Operations
Ansible Command: List Groups
ansible localhost -m debug -a '<var=groups.keys()>' Aws Glue
Verified for current stable LTS aws-glue Operations
Aws Glue Command: Create Dev Endpoint
aws glue create-dev-endpoint --endpoint-name <name> --role-arn <role_arn_used_by_endpoint> aws-glue Operations
Aws Glue Command: List Jobs
aws glue list-jobs aws-glue Operations
Aws Glue Command: List Triggers
aws glue list-triggers aws-glue Archive
Aws Glue Command: Start Job Run
aws glue start-job-run --job-name <job_name> aws-glue Archive
Aws Glue Command: Start Workflow Run
aws glue start-workflow-run --name <workflow_name> aws-glue Archive
Aws Glue Command: Start Trigger
aws glue start-trigger --name <trigger_name> Ani Cli
Verified for current stable LTS ani-cli Operations
Ani Cli Command: Use Vlc As Media Player
ani-cli -v "<anime_title>" ani-cli Operations
Ani Cli Command: Continue Watching Anime
ani-cli -c ani-cli HTTP
Ani Cli Command: Download Range Of Episodes
ani-cli -d -r "<1 6>" "<anime_title>" ani-cli Search
Ani Cli Command: Search Anime
ani-cli "<anime_title>" ani-cli HTTP
Ani Cli Command: Download Episode
ani-cli -d "<anime_title>" ani-cli HTTP
Ani Cli Command: Download Entire Series
ani-cli -d -r "1 -1" "<anime_title>" ani-cli Operations
Ani Cli Command: Watch Specific Episode
ani-cli -e <episode_number> "<anime_title>" ani-cli Operations
Ani Cli Command: Update Ani Cli
ani-cli -U ani-cli HTTP
Ani Cli Command: Download Range Episodes
ani-cli -d -r "<1 6>" "<anime_title>" ani-cli Operations
Ani Cli Command: Continue Watching
ani-cli -c ani-cli Operations
Ani Cli Command: Use Vlc Player
ani-cli -v "<anime_title>" Anki
Verified for current stable LTS anki Operations
Anki Command: Launch Gui
anki anki Operations
Anki Command: Use Specific Language
anki {-l|--lang} language anki Operations
Anki Command: Use Specific Profile
anki {-p|--profile} profile_name anki Operations
Anki Command: Use Non Default Directory
anki {-b|--base} path/to/directory anki Operations
Anki Command: Use Specific Language
anki -l <language> anki Operations
Anki Command: Launch Gui
anki anki Operations
Anki Command: Use Specific Profile
anki -p <profile_name> anki Operations
Anki Command: Use Non Default Directory
anki -b <path/to/directory> Ansible Lint
Verified for current stable LTS ansible-lint Operations
Ansible Lint Command: Lint Playbook Offline Pep8
ansible-lint -o -p <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint All Ansible Content Recursively
ansible-lint <path/to/project_directory> ansible-lint Operations
Ansible Lint Command: Lint Specific Playbook And Role
ansible-lint <path/to/playbook_file> <path/to/role_directory> ansible-lint Operations
Ansible Lint Command: Lint Playbook Exclude Rules
ansible-lint -x <rule1,rule2,...> <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint Playbook Custom Rules Directory
ansible-lint -r <path/to/custom_rules_directory> <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint Playbook With Custom Rules Directory
ansible-lint -r <path/to/custom_rules_directory> <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint Specific Playbook And Role
ansible-lint <path/to/playbook_file> <path/to/role_directory> ansible-lint Operations
Ansible Lint Command: Lint Playbook Excluding Rules
ansible-lint -x <rule1,rule2,...> <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint Playbook Offline With Pep8
ansible-lint -o -p <path/to/playbook_file> ansible-lint Operations
Ansible Lint Command: Lint All Ansible Content Recursively
ansible-lint <path/to/project_directory> Ansible Doc
Verified for current stable LTS ansible-doc Operations
Ansible Doc Command: Show Plugin Info
ansible-doc <plugin_name> ansible-doc Operations
Ansible Doc Command: Show Playbook Snippet
ansible-doc -s <plugin_name> ansible-doc Operations
Ansible Doc Command: List Action Plugins
ansible-doc -l ansible-doc Operations
Ansible Doc Command: List Plugins By Type
ansible-doc -t <become|cache|callback|cliconf|connection|...> -l ansible-doc Operations
Ansible Doc Command: Show Plugin Info By Type
ansible-doc -t <become|cache|callback|cliconf|connection|...> <plugin_name> ansible-doc HTTP
Ansible Doc Command: Show Plugin Info Json
ansible-doc -j <plugin_name> ansible-doc Operations
Ansible Doc Command: Show Plugin Info
ansible-doc <plugin_name> ansible-doc Operations
Ansible Doc Command: Show Plugin Snippet
ansible-doc -s <plugin_name> ansible-doc Operations
Ansible Doc Command: List Plugins
ansible-doc -l ansible-doc Operations
Ansible Doc Command: List Plugins By Type
ansible-doc -t <become|cache|callback|cliconf|connection|...> -l ansible-doc Operations
Ansible Doc Command: Show Plugin Info By Type
ansible-doc -t <become|cache|callback|cliconf|connection|...> <plugin_name> ansible-doc HTTP
Ansible Doc Command: Show Plugin Info Json
ansible-doc -j <plugin_name> Ansible Galaxy
Verified for current stable LTS ansible-galaxy Search
Ansible Galaxy Command: Search For Role
ansible-galaxy role search <keyword> -v<vvvvv> ansible-galaxy HTTP
Ansible Galaxy Command: Get Role Information
ansible-galaxy role info <role_name> ansible-galaxy Operations
Ansible Galaxy Command: List Installed Roles Or Collections
ansible-galaxy <role|collection> list ansible-galaxy Operations
Ansible Galaxy Command: Install Or Remove Roles
ansible-galaxy role <install|remove> <role_name1 role_name2 ...> ansible-galaxy Operations
Ansible Galaxy Command: Create New Role
ansible-galaxy role init <role_name> ansible-galaxy Operations
Ansible Galaxy Command: Install Or Remove Collections
ansible-galaxy collection <install|remove> <collection_name1 collection_name2 ...> ansible-galaxy Operations
Ansible Galaxy Command: Display Help
ansible-galaxy <role|collection> -h ansible-galaxy Search
Ansible Galaxy Command: Search
ansible-galaxy role search <keyword> -v<vvvvv> ansible-galaxy Operations
Ansible Galaxy Command: Info Role
ansible-galaxy role info <role_name> ansible-galaxy Operations
Ansible Galaxy Command: List
ansible-galaxy <role|collection> list ansible-galaxy Operations
Ansible Galaxy Command: Install Remove Role
ansible-galaxy role <install|remove> <role_name1 role_name2 ...> ansible-galaxy Operations
Ansible Galaxy Command: Create Role
ansible-galaxy role init <role_name> ansible-galaxy Operations
Ansible Galaxy Command: Install Remove Collection
ansible-galaxy collection <install|remove> <collection_name1 collection_name2 ...> ansible-galaxy Operations
Ansible Galaxy Command: Help
ansible-galaxy <role|collection> -h Ansiweather
Verified for current stable LTS ansiweather Operations
Ansiweather Command: Display Seven Day Forecast Metric
ansiweather -u metric -f 7 -l <Rzeszow,PL> ansiweather Operations
Ansiweather Command: Display Todays Wind Humidity
ansiweather -w true -h true ansiweather Operations
Ansiweather Command: Display Five Day Forecast Symbols Daylight
ansiweather -F -s true -d true ansiweather Operations
Ansiweather Command: Forecast Seven Days Metric
ansiweather -u metric -f 7 -l <Rzeszow,PL> ansiweather Operations
Ansiweather Command: Forecast Five Days Symbols Daylight
ansiweather -F -s true -d true ansiweather Operations
Ansiweather Command: Current Wind Humidity
ansiweather -w true -h true Ansible Pull
Verified for current stable LTS ansible-pull Operations
Ansible Pull Command: Pull With Hosts File
ansible-pull -U <repository_url> -i <hosts_file> <playbook> ansible-pull Operations
Ansible Pull Command: Pull Branch Specific Playbook
ansible-pull -U <repository_url> -C <branch> <playbook> ansible-pull Operations
Ansible Pull Command: Pull Default Playbook
ansible-pull -U <repository_url> ansible-pull Operations
Ansible Pull Command: Pull Specific Playbook
ansible-pull -U <repository_url> <playbook> ansible-pull Operations
Ansible Pull Command: Pull Playbook With Hosts File
ansible-pull -U <repository_url> -i <hosts_file> <playbook> ansible-pull Operations
Ansible Pull Command: Pull Playbook Specific Branch
ansible-pull -U <repository_url> -C <branch> <playbook> Ansible Vault
Verified for current stable LTS ansible-vault Operations
Ansible Vault Command: Edit View Rekey Vault
ansible-vault <edit|view|rekey> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: Encrypt Plaintext File
ansible-vault encrypt --vault-password-file <path/to/password_file> <path/to/file> ansible-vault Operations
Ansible Vault Command: Rekey Vault File
ansible-vault rekey --vault-password-file <path/to/old_password_file> --new-vault-password-file <path/to/new_password_file> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: View Encrypted Vault File
ansible-vault view --vault-password-file <path/to/password_file> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: Create Vault File
ansible-vault create <path/to/vault_file> ansible-vault Search
Ansible Vault Command: Encrypt String
ansible-vault encrypt_string ansible-vault Operations
Ansible Vault Command: Create Vault File With Password File
ansible-vault create --vault-password-file <path/to/password_file> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: Encrypt Plaintext File In Place
ansible-vault encrypt --vault-password-file <path/to/password_file> <path/to/file> ansible-vault Operations
Ansible Vault Command: Rekey Encrypted Vault File
ansible-vault rekey --vault-password-file <path/to/old_password_file> --new-vault-password-file <path/to/new_password_file> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: Edit View Rekey Vault File
ansible-vault <edit|view|rekey> <path/to/vault_file> ansible-vault Operations
Ansible Vault Command: View Encrypted Vault File With Password File
ansible-vault view --vault-password-file <path/to/password_file> <path/to/vault_file> Ansible Playbook
Verified for current stable LTS ansible-playbook Operations
Ansible Playbook Command: Run Tasks With Custom Inventory
ansible-playbook <playbook> -i <inventory_file> ansible-playbook Operations
Ansible Playbook Command: Run Tasks With Tags
ansible-playbook <playbook> -t <tag1,tag2> ansible-playbook Operations
Ansible Playbook Command: Run Tasks Dry Run
ansible-playbook <playbook> -C -D ansible-playbook Operations
Ansible Playbook Command: Run Tasks In Playbook
ansible-playbook <playbook> ansible-playbook Operations
Ansible Playbook Command: Run Tasks With Extra Vars
ansible-playbook <playbook> -e "<variable1>=<value1> <variable2>=<value2>" ansible-playbook HTTP
Ansible Playbook Command: Run Tasks With Extra Vars Json
ansible-playbook <playbook> -e "@<variables.json>" ansible-playbook Archive
Ansible Playbook Command: Run Tasks Starting At Task
ansible-playbook <playbook> --start-at <task_name> ansible-playbook Operations
Ansible Playbook Command: Run Playbook With Extra Vars Cli
ansible-playbook <playbook> -e "<variable1>=<value1> <variable2>=<value2>" ansible-playbook Operations
Ansible Playbook Command: Run Playbook With Tags
ansible-playbook <playbook> -t <tag1,tag2> ansible-playbook Operations
Ansible Playbook Command: Run Playbook
ansible-playbook <playbook> ansible-playbook Operations
Ansible Playbook Command: Run Playbook With Inventory
ansible-playbook <playbook> -i <inventory_file> ansible-playbook HTTP
Ansible Playbook Command: Run Playbook With Extra Vars Json
ansible-playbook <playbook> -e "@<variables.json>" ansible-playbook Archive
Ansible Playbook Command: Run Playbook Starting At Task
ansible-playbook <playbook> --start-at <task_name> ansible-playbook Operations
Ansible Playbook Command: Run Playbook Dry Run
ansible-playbook <playbook> -C -D Apg
Verified for current stable LTS apg Operations
Apg Command: Create Default Password
apg apg Operations
Apg Command: Create Password With Symbols Numbers Uppercase Lowercase
apg -M SNCL apg Operations
Apg Command: Create Password Excluding Dictionary
apg -r <path/to/dictionary_file> apg Operations
Apg Command: Create Password With Minimum Length
apg -m <16> apg Operations
Apg Command: Create Password With Maximum Length
apg -x <16> apg Operations
Apg Command: Create Password With Symbols Numbers And Case
apg -M SNCL apg Operations
Apg Command: Create Password Without Dictionary Words
apg -r <path/to/dictionary_file> Apm
Verified for current stable LTS apm Operations
Apm Command: Remove Package
apm remove <package> apm Operations
Apm Command: Install Package
apm install <package> apm Operations
Apm Command: Upgrade Package
apm upgrade <package> Arch
Verified for current stable LTS arch Operations
Arch Command: View Machine Architecture
arch Arc
Verified for current stable LTS arc Operations
Arc Command: Show Pending Revision Information
arc list arc Operations
Arc Command: Send Changes To Differential For Review
arc diff arc Operations
Arc Command: Update Git Commit Messages After Review
arc amend arc Operations
Arc Command: Push Git Changes
arc land arc Operations
Arc Command: Send Changes To Differential
arc diff Arduino
Verified for current stable LTS arduino Operations
Arduino Command: Set Preference
arduino --pref <name>=<value> arduino Operations
Arduino Command: Build A Sketch
arduino --verify <path/to/file.ino> arduino Operations
Arduino Command: Build And Upload A Sketch
arduino --upload <path/to/file.ino> arduino Operations
Arduino Command: Build And Upload Nano Sketch
arduino --board {arduino:avr:nano:cpu=atmega328p} --port </dev/ttyACM0> --upload <path/to/file.ino> arduino Operations
Arduino Command: Build With Custom Path
arduino --pref build.path=<path/to/build_directory> --verify <path/to/file.ino> arduino Operations
Arduino Command: Install Latest Sam Board
arduino --install-boards "{arduino:sam}" arduino Operations
Arduino Command: Install Libraries
arduino --install-library "{Bridge:1.0.0,Servo:1.2.0}" arduino Operations
Arduino Command: Save Preferences
arduino --save-prefs arduino Operations
Arduino Command: Build And Upload Sketch
arduino --upload <path/to/file.ino> arduino Operations
Arduino Command: Install Sam Board
arduino --install-boards "{arduino:sam}" arduino Operations
Arduino Command: Build Sketch
arduino --verify <path/to/file.ino> arduino Operations
Arduino Command: Build And Upload Sketch Arduino Nano
arduino --board {arduino:avr:nano:cpu=atmega328p} --port </dev/ttyACM0> --upload <path/to/file.ino> arduino Operations
Arduino Command: Build With Custom Directory
arduino --pref build.path=<path/to/build_directory> --verify <path/to/file.ino> Argocd
Verified for current stable LTS argocd Operations
Argocd Command: List Applications
argocd app list argocd Operations
Argocd Command: Login To Argocd Server
argocd login --insecure --username <user> --password <password> {argocd_server:port} argocd Operations
Argocd Command: Login
argocd login --insecure --username <user> --password <password> {argocd_server:port} Antibody
Verified for current stable LTS antibody Operations
Antibody Command: Update All Bundles
antibody update antibody Operations
Antibody Command: Bundle All Plugins For Static Loading
antibody < <~/.zsh_plugins.txt> bundle > <~/.zsh_plugins.sh> antibody Operations
Antibody Command: List Installed Plugins
antibody list antibody Operations
Antibody Command: Update
antibody update antibody Operations
Antibody Command: Bundle
antibody < <~/.zsh_plugins.txt> bundle > <~/.zsh_plugins.sh> antibody Operations
Antibody Command: List
antibody list Ant
Verified for current stable LTS ant HTTP
Ant Command: Print Target Info
ant {-p|-projecthelp} ant Operations
Ant Command: Build Default Project
ant ant Operations
Ant Command: Build Custom Project
ant {-f|-buildfile} buildfile.xml ant Operations
Ant Command: Print Debug Info
ant {-d|-debug} ant Operations
Ant Command: Keep Going On Failure
ant {-k|-keep-going} ant HTTP
Ant Command: Print Project Targets
ant -p ant Operations
Ant Command: Build Default Project
ant ant Operations
Ant Command: Build Custom Project
ant -f <buildfile.xml> ant Operations
Ant Command: Print Debug Info
ant -d ant Operations
Ant Command: Keep Going On Failures
ant -k Apkeep
Verified for current stable LTS apkeep HTTP
Apkeep Command: Specify Store For Download
apkeep {-a|--app} com.example.application {-d|--download-source} apk-pure|google-play|f-droid|huawei-app-gallery path/to/directory apkeep HTTP
Apkeep Command: Download Apk File
apkeep {-a|--app} com.example.application path/to/directory apkeep Operations
Apkeep Command: List Available Versions
apkeep {-a|--app} com.example.application {-l|--list-versions} path/to/directory apkeep HTTP
Apkeep Command: Download Apk
apkeep -a <com.example.application> <path/to/directory> apkeep Operations
Apkeep Command: List Versions
apkeep -a <com.example.application> -l <path/to/directory> apkeep HTTP
Apkeep Command: Specify Store
apkeep -a <com.example.application> -d <apk-pure|google-play|f-droid|huawei-app-gallery> <path/to/directory> Apktool
Verified for current stable LTS apktool Video
Apktool Command: Install And Store Framework
apktool if <path/to/framework>.apk apktool Operations
Apktool Command: Decode Apk File
apktool d <path/to/file>.apk apktool Operations
Apktool Command: Build Apk File From Directory
apktool b <path/to/directory> apktool Operations
Apktool Command: Decode Apk
apktool d <path/to/file>.apk apktool Video
Apktool Command: Install Framework
apktool if <path/to/framework>.apk apktool Operations
Apktool Command: Build Apk
apktool b <path/to/directory> Apkleaks
Verified for current stable LTS apkleaks Operations
Apkleaks Command: Scan Apk File For Uris Endpoints Secrets
apkleaks -f <path/to/file>.apk apkleaks Operations
Apkleaks Command: Pass Jadx Disassembler Arguments
apkleaks -f <path/to/file>.apk -a "<--threads-count 5 --deobf>" apkleaks Operations
Apkleaks Command: Scan Apk Save Output To File
apkleaks -f <path/to/file>.apk -o <path/to/output.txt> apkleaks Operations
Apkleaks Command: Scan Apk
apkleaks -f <path/to/file>.apk apkleaks Operations
Apkleaks Command: Scan Apk Save Output
apkleaks -f <path/to/file>.apk -o <path/to/output.txt> apkleaks Operations
Apkleaks Command: Pass Jadx Args
apkleaks -f <path/to/file>.apk -a "<--threads-count 5 --deobf>" Ar
Verified for current stable LTS ar Archive
Ar Command: Replace Or Add Files To Archive
ar r <path/to/file.deb> <path/to/debian-binary path/to/control.tar.gz path/to/data.tar.xz ...> ar Archive
Ar Command: Extract All Members From Archive
ar x <path/to/file.a> ar Archive
Ar Command: List Archive Contents
ar t <path/to/file.ar> ar Operations
Ar Command: Insert Object File Index
ar s <path/to/file.a> ar Archive
Ar Command: Create Archive With Index
ar rs <path/to/file.a> <path/to/file1.o path/to/file2.o ...> ar Archive
Ar Command: Extract
ar x <path/to/file.a> ar Operations
Ar Command: Insert Index
ar s <path/to/file.a> ar Operations
Ar Command: List
ar t <path/to/file.ar> ar Archive
Ar Command: Replace Or Add
ar r <path/to/file.deb> <path/to/debian-binary path/to/control.tar.gz path/to/data.tar.xz ...> ar Operations
Ar Command: Create With Index
ar rs <path/to/file.a> <path/to/file1.o path/to/file2.o ...> Archwiki Rs
Verified for current stable LTS archwiki-rs Search
Archwiki Rs Command: Search Archwiki
archwiki-rs search "<search_text>" --text-search archwiki-rs Operations
Archwiki Rs Command: Read A Page
archwiki-rs read-page <page_title> archwiki-rs Operations
Archwiki Rs Command: Read A Page With Format
archwiki-rs read-page <page_title> --format <plain-text|markdown|html> archwiki-rs HTTP
Archwiki Rs Command: Download Local Wiki
archwiki-rs local-wiki /<path/to/local_wiki> --format <plain-text|markdown|html> archwiki-rs Search
Archwiki Rs Command: Search
archwiki-rs search "<search_text>" --text-search archwiki-rs Operations
Archwiki Rs Command: Read Page
archwiki-rs read-page <page_title> archwiki-rs Operations
Archwiki Rs Command: Read Page With Format
archwiki-rs read-page <page_title> --format <plain-text|markdown|html> Arduino Builder
Verified for current stable LTS arduino-builder Operations
Arduino Builder Command: Compile Sketch
arduino-builder -compile <path/to/sketch.ino> arduino-builder Operations
Arduino Builder Command: Enable Verbose Mode
arduino-builder -verbose <true> arduino-builder Operations
Arduino Builder Command: Set Debug Level
arduino-builder -debug-level <1..10> arduino-builder Operations
Arduino Builder Command: Set Build Path
arduino-builder -build-path <path/to/build_directory> arduino-builder HTTP
Arduino Builder Command: Use Build Options File
arduino-builder -build-options-file <path/to/build.options.json> arduino-builder Operations
Arduino Builder Command: Set Debug Level
arduino-builder -debug-level <1..10> arduino-builder Operations
Arduino Builder Command: Enable Verbose Mode
arduino-builder -verbose <true> arduino-builder Operations
Arduino Builder Command: Compile Sketch
arduino-builder -compile <path/to/sketch.ino> arduino-builder Operations
Arduino Builder Command: Set Build Directory
arduino-builder -build-path <path/to/build_directory> arduino-builder HTTP
Arduino Builder Command: Use Build Options File
arduino-builder -build-options-file <path/to/build.options.json> Argon2
Verified for current stable LTS argon2 Operations
Argon2 Command: Calculate Hash With Params
echo "<password>" | argon2 "<salt_text>" -t <5> -m <20> -p <7> argon2 Operations
Argon2 Command: Calculate Default Hash
echo "<password>" | argon2 "<salt_text>" argon2 Operations
Argon2 Command: Calculate Hash With Algorithm
echo "<password>" | argon2 "<salt_text>" -<d|i|id> argon2 Operations
Argon2 Command: Display Encoded Hash
echo "<password>" | argon2 "<salt_text>" -e argon2 Operations
Argon2 Command: Calculate Hash Default
echo "<password>" | argon2 "<salt_text>" argon2 Operations
Argon2 Command: Calculate Hash Algorithm
echo "<password>" | argon2 "<salt_text>" -<d|i|id> argon2 Operations
Argon2 Command: Calculate Hash Parameters
echo "<password>" | argon2 "<salt_text>" -t <5> -m <20> -p <7> Argocd App
Verified for current stable LTS argocd-app Operations
Argocd App Command: Delete Application
argocd app delete <app_name> argocd-app Operations
Argocd App Command: Preview App Sync
argocd app sync <app_name> --dry-run --prune argocd-app HTTP
Argocd App Command: List Applications
argocd app list --output <json|yaml|wide> argocd-app HTTP
Argocd App Command: Get Application Details
argocd app get <app_name> --output <json|yaml|wide> argocd-app HTTP
Argocd App Command: Deploy Application
argocd app create <app_name> --repo <git_repo_url> --path <path/to/repo> --dest-server https://kubernetes.default.svc --dest-namespace <ns> argocd-app Operations
Argocd App Command: Enable Auto Sync
argocd app set <app_name> --sync-policy auto --auto-prune --self-heal argocd-app Operations
Argocd App Command: Show Deployment History
argocd app history <app_name> --output <wide|id> argocd-app Operations
Argocd App Command: Rollback Application
argocd app rollback <app_name> <history_id> --prune argocd-app Operations
Argocd App Command: Preview Sync
argocd app sync <app_name> --dry-run --prune Aria2c
Verified for current stable LTS aria2c HTTP
Aria2c Command: Download Specific Uri
aria2c "<url>" aria2c HTTP
Aria2c Command: Download Uris From File With Parallel Downloads
aria2c -i <path/to/file> -j <number_of_downloads> aria2c HTTP
Aria2c Command: Download From Mirrors And Verify Checksum
aria2c --checksum <sha-256>=<hash> {"<url1>" "<url2>" ...} aria2c HTTP
Aria2c Command: Download File With Specific Output Name
aria2c -o <path/to/file> "<url>" aria2c HTTP
Aria2c Command: Download Multiple Files In Parallel
aria2c -Z <"url1" "url2" ...> aria2c HTTP
Aria2c Command: Download With Multiple Connections
aria2c -s <number_of_connections> "<url>" aria2c HTTP
Aria2c Command: Ftp Download With Credentials
aria2c --ftp-user <username> --ftp-passwd <password> "<url>" aria2c HTTP
Aria2c Command: Limit Download Speed
aria2c --max-download-limit <speed> "<url>" aria2c HTTP
Aria2c Command: Download And Verify Checksum
aria2c --checksum <sha-256>=<hash> <"url1" "url2" ...> aria2c HTTP
Aria2c Command: Download Uris From File With Limited Concurrent Downloads
aria2c -i <path/to/file> -j <number_of_downloads> Arthas
Verified for current stable LTS arthas Archive
Arthas Command: Start Arthas
java -jar <path/to/arthas-boot.jar> arthas Operations
Arthas Command: Terminate Arthas Server
stop arthas Operations
Arthas Command: Reconnect Arthas
telnet localhost <port_number> arthas Operations
Arthas Command: Exit Arthas Client
<exit|quit|logout|q> arthas Operations
Arthas Command: Stop Arthas Server
stop Asciitopgm
Verified for current stable LTS asciitopgm Operations
Asciitopgm Command: Display Version
asciitopgm -v asciitopgm Operations
Asciitopgm Command: Convert Ascii To Pgm
asciitopgm <path/to/input_file> > <path/to/output_file.pgm> Asciiquarium
Verified for current stable LTS asciiquarium Archive
Asciiquarium Command: Start Asciiquarium
asciiquarium asciiquarium Operations
Asciiquarium Command: Toggle Pause
<p> asciiquarium Operations
Asciiquarium Command: Redraw Aquarium
<r> asciiquarium Operations
Asciiquarium Command: Pipe Asciiquarium Through Lolcat
asciiquarium | lolcat asciiquarium Operations
Asciiquarium Command: Exit Asciiquarium
<q> asciiquarium Operations
Asciiquarium Command: Pipe Through Lolcat
asciiquarium | lolcat Argos Translate
Verified for current stable LTS argos-translate Operations
Argos Translate Command: Translate Ar To Ru
argos-translate --from-lang ar --to-lang ru <صورة تساوي أكثر من ألف كلمة> argos-translate Operations
Argos Translate Command: Install Translation Pair
argospm install translate-es_en argos-translate Operations
Argos Translate Command: Translate Text Es To En
argos-translate --from-lang es --to-lang en <un texto corto> argos-translate Operations
Argos Translate Command: Translate Text File En To Hi
cat <path/to/file.txt> | argos-translate --from-lang en --to-lang hi argos-translate Search
Argos Translate Command: Search Available Translation Pairs From En
argospm search --from-lang en argos-translate Operations
Argos Translate Command: Update Installed Language Packages
argospm update argos-translate Operations
Argos Translate Command: List Installed Translation Pairs
argospm list argos-translate Operations
Argos Translate Command: Translate Text
argos-translate --from-lang es --to-lang en <un texto corto> argos-translate Operations
Argos Translate Command: Update Language Packages
argospm update argos-translate Operations
Argos Translate Command: Install Translation Pairs
argospm install translate-es_en argos-translate Operations
Argos Translate Command: Translate Text File
cat <path/to/file.txt> | argos-translate --from-lang en --to-lang hi argos-translate Search
Argos Translate Command: Search Available Translation Pairs
argospm search --from-lang en argos-translate Operations
Argos Translate Command: Translate From Ar To Ru
argos-translate --from-lang ar --to-lang ru <صورة تساوي أكثر من ألف كلمة> Aria2
Verified for current stable LTS aria2 Operations
Aria2 Command: View Documentation For Updated Command
tldr aria2c aria2 Operations
Aria2 Command: Alias For Aria2c
aria2 aria2 Operations
Aria2 Command: View Tldr Documentation
tldr aria2c Arp
Verified for current stable LTS arp Operations
Arp Command: Show Bsd Style Output
arp -a arp Operations
Arp Command: Set New Arp Entry
sudo arp -s <address> <mac_address> arp Operations
Arp Command: Show Current Arp Table
arp arp Operations
Arp Command: Delete Specific Entry
sudo arp -d <address> arp Operations
Arp Command: Show Alternative Bsd Output
arp -a arp Operations
Arp Command: Set Up New Entry
sudo arp -s <address> <mac_address> Arp Scan
Verified for current stable LTS arp-scan Operations
Arp Scan Command: Scan Ip Network With Bitmask
arp-scan {192.168.1.1}/{24} arp-scan Operations
Arp Scan Command: Scan Current Local Network
arp-scan {-l|--localnet} arp-scan Operations
Arp Scan Command: Scan Ip Network With Range
arp-scan {127.0.0.0}- {127.0.0.31} arp-scan Operations
Arp Scan Command: Scan Ip Network With Netmask
arp-scan {10.0.0.0}:{255.255.255.0} arp-scan Operations
Arp Scan Command: Scan Ip Network With Custom Range
arp-scan <127.0.0.0>-<127.0.0.31> arp-scan Operations
Arp Scan Command: Scan Local Network
arp-scan -l arp-scan Operations
Arp Scan Command: Scan Ip Network With Custom Bitmask
arp-scan <192.168.1.1>/<24> arp-scan Operations
Arp Scan Command: Scan Ip Network With Custom Netmask
arp-scan <10.0.0.0>:<255.255.255.0> Arjun
Verified for current stable LTS arjun HTTP
Arjun Command: Scan Url For Get Parameters
arjun -u {https://example.com/page.php} arjun HTTP
Arjun Command: Use Custom Wordlist
arjun -u {https://example.com} -w <path/to/wordlist.txt> arjun HTTP
Arjun Command: Scan Using Post Method
arjun -u {https://example.com/api} -m POST arjun HTTP
Arjun Command: Save Discovered Parameters To Json
arjun -u {https://example.com} -o <path/to/output.json> arjun HTTP
Arjun Command: Increase Request Delay
arjun -u {https://example.com} -d <2> arjun HTTP
Arjun Command: Scan Get Parameters
arjun -u {https://example.com/page.php} arjun HTTP
Arjun Command: Increase Request Delay
arjun -u {https://example.com} -d <2> arjun HTTP
Arjun Command: Use Custom Wordlist
arjun -u {https://example.com} -w <path/to/wordlist.txt> arjun HTTP
Arjun Command: Scan Post Parameters
arjun -u {https://example.com/api} -m POST arjun HTTP
Arjun Command: Save To Json
arjun -u {https://example.com} -o <path/to/output.json> Arping
Verified for current stable LTS arping Operations
Arping Command: Ping Host Finish After First Reply
arping -f <host_ip> arping Operations
Arping Command: Ping Host By Arp
arping <host_ip> arping Operations
Arping Command: Ping Host On Specific Interface
arping -I <interface> <host_ip> arping Operations
Arping Command: Ping Host Specific Number Of Times
arping -c <count> <host_ip> arping Operations
Arping Command: Broadcast Arp Request
arping -U <ip_to_broadcast> arping Operations
Arping Command: Detect Duplicated Ip Addresses
arping -D -w <3> <ip_to_check> arping Operations
Arping Command: Ping Host
arping <host_ip> arping Operations
Arping Command: Ping Host Specific Count
arping -c <count> <host_ip> arping Operations
Arping Command: Ping Host Specific Interface
arping -I <interface> <host_ip> arping Operations
Arping Command: Ping Host Finish First Reply
arping -f <host_ip> arping Operations
Arping Command: Broadcast Arp Request
arping -U <ip_to_broadcast> arping Operations
Arping Command: Detect Duplicated Ip
arping -D -w <3> <ip_to_check> Asar
Verified for current stable LTS asar Archive
Asar Command: Archive File Or Directory
asar {p|pack} {path/to/input_file_or_directory} {path/to/output_archive.asar} asar Archive
Asar Command: Extract Specific File
asar {ef|extract-file} {path/to/archive.asar} {file} asar Archive
Asar Command: Extract Archive
asar {e|extract} {path/to/archive.asar} asar Archive
Asar Command: List Archive Contents
asar {l|list} {path/to/archive.asar} asar Archive
Asar Command: Archive
asar [p|pack] path/to/input_file_or_directory path/to/output_archive.asar asar Archive
Asar Command: Extract
asar [e|extract] path/to/archive.asar asar Archive
Asar Command: Extract File
asar [ef|extract-file] path/to/archive.asar file asar Archive
Asar Command: List
asar [l|list] path/to/archive.asar Arthas Trace
Verified for current stable LTS arthas-trace Search
Arthas Trace Command: Track Method Invoke Chain Exceeding Cost And Limit
trace <class-pattern> <method-pattern> '#cost > <10>' -n 5 arthas-trace Search
Arthas Trace Command: Trace Method Invoke Chain With Cost
trace <class-pattern> <method-pattern> '#cost > <10>' arthas-trace Search
Arthas Trace Command: Trace Method Invoke Chain
trace <class-pattern> <method-pattern> arthas-trace Search
Arthas Trace Command: Trace Multiple Classes Or Methods
trace -E <class-pattern1>|<class-pattern2> <method-pattern1>|<method-pattern2>|<method-pattern3> arthas-trace Search
Arthas Trace Command: Trace Method Invoke Longer Than 10ms
trace <class-pattern> <method-pattern> '#cost > <10>' arthas-trace Search
Arthas Trace Command: Trace Invoke Chain Above 10ms With Limit
trace <class-pattern> <method-pattern> '#cost > <10>' -n 5 Arthas Watch
Verified for current stable LTS arthas-watch Search
Arthas Watch Command: Observe Parameters And Return Value When First Is Five
watch <class-pattern> <method-pattern> '{< params[1],returnObj >}' '<"5".equals(params[0])>' -x 4 arthas-watch Search
Arthas Watch Command: Observe First Parameter And Return Value
watch <class-pattern> <method-pattern> '{< params[0],returnObj >}' -x 4 arthas-watch Search
Arthas Watch Command: Observe Count Property On Return Or Exception
watch <class-pattern> <method-pattern> '{< params[1].count >}' -e -s arthas-watch Search
Arthas Watch Command: Observe First Parameter Return Value
watch <class-pattern> <method-pattern> '{< params[0],returnObj >}' -x 4 arthas-watch Search
Arthas Watch Command: Conditional Parameter Observation
watch <class-pattern> <method-pattern> '{< params[1],returnObj >}' '<"5".equals(params[0])>' -x 4 arthas-watch Search
Arthas Watch Command: Observe Second Parameter Count
watch <class-pattern> <method-pattern> '{< params[1].count >}' -e -s Ast Grep
Verified for current stable LTS ast-grep Search
Ast Grep Command: Search For Pattern In Files
ast-grep run {-p|--pattern} '<pattern>' {path/to/file} ast-grep Search
Ast Grep Command: Run Rules From Configuration File
ast-grep scan {-r|--rule} {path/to/rule.yml} {path/to/directory} ast-grep Search
Ast Grep Command: Display Help For Subcommand
ast-grep {run} {-h|--help} ast-grep Search
Ast Grep Command: Search For Pattern In Specific Language
ast-grep run {-p|--pattern} '<pattern>' {-l|--lang} {python} {path/to/directory} ast-grep Search
Ast Grep Command: Rewrite Code Matching Pattern
ast-grep run {-p|--pattern} '<pattern>' {-r|--rewrite} '<replacement>' {path/to/file} ast-grep Search
Ast Grep Command: Interactively Search And Rewrite Code
ast-grep run {-p|--pattern} '<pattern>' {-i|--interactive} {path/to/directory} ast-grep Search
Ast Grep Command: Rewrite Code Matching Pattern
ast-grep run -p '<pattern>' -r '<replacement>' <path/to/file> ast-grep Search
Ast Grep Command: Display Help For Subcommand
ast-grep <run> -h ast-grep Search
Ast Grep Command: Search Pattern In Files
ast-grep run -p '<pattern>' <path/to/file> ast-grep Search
Ast Grep Command: Search Pattern In Language
ast-grep run -p '<pattern>' -l <python> <path/to/directory> ast-grep Search
Ast Grep Command: Run Rules From Config
ast-grep scan -r <path/to/rule.yml> <path/to/directory> ast-grep Search
Ast Grep Command: Interactive Search And Rewrite
ast-grep run -p '<pattern>' -i <path/to/directory> Asnmap
Verified for current stable LTS asnmap Operations
Asnmap Command: Lookup Cidr Ranges For A Domain
asnmap {-d|-domain} example.com -silent asnmap HTTP
Asnmap Command: Output Results In Json Format
asnmap {-d|-domain} facebook.com {-j|-json} -silent asnmap Operations
Asnmap Command: Update Asnmap To Latest Version
asnmap {-up|-update} asnmap Operations
Asnmap Command: Lookup Cidr Ranges For An Asn
asnmap {-a|-asn} AS5650 -silent asnmap Operations
Asnmap Command: Lookup Cidr Ranges For An Ip Address
asnmap {-i|-ip} 100.19.12.21 -silent asnmap Operations
Asnmap Command: Lookup Cidr Ranges For An Organization
asnmap -org GOOGLE -silent asnmap HTTP
Asnmap Command: Lookup Cidr Ranges From File Of Targets
asnmap {-f|-file} path/to/targets.txt -silent asnmap Operations
Asnmap Command: Output Results In Csv Format
asnmap {-a|-asn} AS394161 {-c|-csv} -silent asnmap Operations
Asnmap Command: Lookup Cidr For Asn
asnmap -a <AS5650> -silent asnmap Operations
Asnmap Command: Lookup Cidr For Organization
asnmap -org <GOOGLE> -silent asnmap Operations
Asnmap Command: Output Results Csv
asnmap -a <AS394161> -c -silent asnmap Operations
Asnmap Command: Lookup Cidr For Ip
asnmap -i <100.19.12.21> -silent asnmap Operations
Asnmap Command: Lookup Cidr For Domain
asnmap -d <example.com> -silent asnmap HTTP
Asnmap Command: Lookup Cidr From File
asnmap -f <path/to/targets.txt> -silent asnmap HTTP
Asnmap Command: Output Results Json
asnmap -d <facebook.com> -j -silent asnmap Operations
Asnmap Command: Update Asnmap
asnmap -up Astronomer
Verified for current stable LTS astronomer Archive
Astronomer Command: Scan Maximum Stars
astronomer <tldr-pages/tldr-node-client> -s <50> astronomer Operations
Astronomer Command: Scan Repository
astronomer <tldr-pages/tldr-node-client> astronomer Operations
Astronomer Command: Scan Repository With Reports
astronomer <tldr-pages/tldr-node-client> -v astronomer Operations
Astronomer Command: Scan Repository
astronomer <tldr-pages/tldr-node-client> astronomer Archive
Astronomer Command: Scan Max Stars
astronomer <tldr-pages/tldr-node-client> -s <50> astronomer Operations
Astronomer Command: Scan With Comparative Reports
astronomer <tldr-pages/tldr-node-client> -v At
Verified for current stable LTS at Operations
At Command: Execute Command From Stdin At Specific Time
echo "<command>" | at 1000 at Operations
At Command: List All Queued Jobs For Current User
at -l at Operations
At Command: Create Command Interactively And Execute In 5 Minutes
at now + 5 minutes at Operations
At Command: Create Command Interactively And Execute At Specific Time
at {hh:mm} at Operations
At Command: Execute Commands From File Next Tuesday
at -f <path/to/file> 9:30 PM Tue at Operations
At Command: View Specified Job
at -c <job_number> at Operations
At Command: Create Command Interactively Execute In 5 Minutes
at now + 5 minutes at Operations
At Command: Execute Command From Stdin At Specific Time
echo "<command>" | at 1000 at Operations
At Command: List Queued Jobs For Current User
at -l at Operations
At Command: Create Command Interactively Execute At Specific Time
at {hh:mm} at Operations
At Command: Execute Commands From File Next Week
at -f <path/to/file> 9:30 PM Tue at Operations
At Command: View Specified Job
at -c <job_number> Asdf
Verified for current stable LTS asdf Operations
Asdf Command: Set Global Version
asdf set -u <name> <version> asdf Operations
Asdf Command: List All Plugins
asdf plugin list all asdf Operations
Asdf Command: List All Versions
asdf list all <name> asdf Operations
Asdf Command: See Current Version
asdf current <name> asdf Operations
Asdf Command: Install Plugin
asdf plugin add <name> asdf Operations
Asdf Command: Install Specific Version
asdf install <name> <version> asdf Operations
Asdf Command: Set Local Version
asdf set <name> <version> asdf Operations
Asdf Command: List Plugins
asdf plugin list all asdf Operations
Asdf Command: List Available Versions
asdf list all <name> asdf Operations
Asdf Command: Current Version
asdf current <name> Astyle
Verified for current stable LTS astyle Operations
Astyle Command: Apply Java Style
astyle -A2 <path/to/file> astyle Operations
Astyle Command: Apply Custom Indent Tabs
astyle -t<number_of_tabs> <path/to/file> astyle Operations
Astyle Command: Apply Default Style
astyle <source_file> astyle Operations
Astyle Command: Apply Allman Style
astyle -A1 <path/to/file> astyle Operations
Astyle Command: Apply Custom Indent Spaces
astyle -s<number_of_spaces> <path/to/file> Asciidoctor
Verified for current stable LTS asciidoctor Operations
Asciidoctor Command: Convert Adoc To Pdf
asciidoctor -b pdf -r asciidoctor-pdf <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert Adoc To Html
asciidoctor <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert Adoc To Html With Css
asciidoctor -a stylesheet=<path/to/stylesheet.css> <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert Adoc To Embedded Html
asciidoctor -e <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert To Html With Stylesheet
asciidoctor -a stylesheet=<path/to/stylesheet.css> <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert To Html
asciidoctor <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert To Embedded Html
asciidoctor -e <path/to/file.adoc> asciidoctor Operations
Asciidoctor Command: Convert To Pdf
asciidoctor -b pdf -r asciidoctor-pdf <path/to/file.adoc> Ascii Image Converter
Verified for current stable LTS ascii-image-converter Video
Ascii Image Converter Command: Negative Color Image
ascii-image-converter -Cn <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Thresholded Image Braille
ascii-image-converter -b <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Dithered Image Braille
ascii-image-converter -b --dither <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Use Complex Characters
ascii-image-converter -c <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Convert Image To Ascii
ascii-image-converter <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Colorize Output
ascii-image-converter -C <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Create Dithered Image Braille
ascii-image-converter -b --dither <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Create Thresholded Image Braille
ascii-image-converter -b <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Display Negative Colors
ascii-image-converter -Cn <path/to/image|URL> ascii-image-converter Video
Ascii Image Converter Command: Use Complex Character Set
ascii-image-converter -c <path/to/image|URL> Asciinema
Verified for current stable LTS asciinema Operations
Asciinema Command: Authenticate
asciinema [a|auth] asciinema Operations
Asciinema Command: Print Recording Output
asciinema [ca|cat] path/to/recording.cast asciinema Operations
Asciinema Command: Auth
asciinema a asciinema Operations
Asciinema Command: Record Local
asciinema [r|record] path/to/recording.cast asciinema Operations
Asciinema Command: Upload Recording
asciinema [u|upload] path/to/recording.cast asciinema Operations
Asciinema Command: Stream Terminal
asciinema [st|stream] --local asciinema Operations
Asciinema Command: Record With Idle Limit
asciinema r -i 2.5 asciinema Operations
Asciinema Command: Play Local
asciinema p <path/to/recording.cast> asciinema HTTP
Asciinema Command: Play Remote
asciinema p https://asciinema.org/a/<cast_id> asciinema Operations
Asciinema Command: Record
asciinema r <path/to/recording.cast> asciinema Operations
Asciinema Command: Cat
asciinema ca <path/to/recording.cast> asciinema Operations
Asciinema Command: Upload
asciinema u <path/to/recording.cast> asciinema Operations
Asciinema Command: Stream
asciinema st --local Aspell
Verified for current stable LTS aspell Operations
Aspell Command: Check A Single File
aspell check <path/to/file> aspell Operations
Aspell Command: Show Available Dictionary Languages
aspell dicts aspell Operations
Aspell Command: List Misspelled Words From Stdin
cat <path/to/file> | aspell list aspell Operations
Aspell Command: Run With Different Language
aspell --lang <cs> aspell Operations
Aspell Command: List Misspelled Words Ignore Personal List
cat <path/to/file> | aspell --personal <personal-word-list.pws> list aspell Operations
Aspell Command: Show Dictionaries
aspell dicts aspell Operations
Aspell Command: Check File
aspell check <path/to/file> aspell Operations
Aspell Command: List Misspelled
cat <path/to/file> | aspell list aspell Operations
Aspell Command: Change Language
aspell --lang <cs> aspell Operations
Aspell Command: List Misspelled Ignore Personal
cat <path/to/file> | aspell --personal <personal-word-list.pws> list Audacious
Verified for current stable LTS audacious Audio
Audacious Command: Start New Instance
audacious -N <path/to/audio> audacious Operations
Audacious Command: Enqueue Directory
audacious -e <path/to/directory> audacious Operations
Audacious Command: Skip Forward
audacious --<fwd> audacious Operations
Audacious Command: Launch Gui
audacious audacious Operations
Audacious Command: Stop Playback
audacious -s audacious Archive
Audacious Command: Start Stop Playback
audacious -t audacious Archive
Audacious Command: Start Cli Mode
audacious -H audacious Audio
Audacious Command: Start New Instance And Play Audio
audacious -N <path/to/audio> audacious Audio
Audacious Command: Enqueue Directory Of Audio Files
audacious -e <path/to/directory> audacious Operations
Audacious Command: Skip Forwards Or Backwards
audacious --<fwd|rew> audacious Archive
Audacious Command: Start In Cli Mode
audacious -H audacious Operations
Audacious Command: Quit After Play
audacious -q audacious Operations
Audacious Command: Play Pause
audacious -t audacious Operations
Audacious Command: Skip Backward
audacious --<rew> Astroterm
Verified for current stable LTS astroterm Operations
Astroterm Command: Use City Location And Set Speed
astroterm -i <Singapore> -s <1000.0> astroterm Operations
Astroterm Command: Display Real Time Positions
astroterm astroterm Operations
Astroterm Command: Display Constellations And Configure Rendering
astroterm -C -c -f <60> astroterm Operations
Astroterm Command: Use Unicode And Threshold Brightness
astroterm -u -t <2.0> astroterm Operations
Astroterm Command: Set Location And Datetime
astroterm -a <90.0> -o <-180.0> -d {2025-08-04T12:00:00} astroterm Operations
Astroterm Command: UseUnicodeAndThreshold
astroterm -u -t <2.0> astroterm Operations
Astroterm Command: DisplayConstellationsWithColorAndFPS
astroterm -C -c -f <60> astroterm Operations
Astroterm Command: UseCityAndSpeed
astroterm -i <Singapore> -s <1000.0> astroterm Operations
Astroterm Command: DisplayRealTimePositions
astroterm astroterm Operations
Astroterm Command: UseLocationAndDateTime
astroterm -a <90.0> -o <-180.0> -d {2025-08-04T12:00:00} Atq
Verified for current stable LTS atq Operations
Atq Command: Show Current User Scheduled Jobs
atq atq Operations
Atq Command: Show Jobs From Queue
atq -q <a> atq Operations
Atq Command: Show Jobs Of All Users
sudo atq atq Operations
Atq Command: Show Jobs Of All Users
sudo atq atq Operations
Atq Command: Show Current User Scheduled Jobs
atq atq Operations
Atq Command: Show Jobs From Specific Queue
atq -q <a> Atrm
Verified for current stable LTS atrm Operations
Atrm Command: Remove Multiple Jobs
atrm <15> <17> <22> atrm Operations
Atrm Command: Remove Job Number
atrm 10 atrm Operations
Atrm Command: Remove Single Job
atrm 10 atrm Operations
Atrm Command: Remove Multiple Jobs
atrm <15> <17> <22> Atool
Verified for current stable LTS atool Archive
Atool Command: Extract Archive
atool {-x|--extract} archive.tar.gz atool Archive
Atool Command: Repack Archive
atool {-r|--repack} old_archive.tar.gz new_archive.tar.7z atool Archive
Atool Command: Create New Archive
atool {-a|--add} {new_archive.zip} {path/to/file1 path/to/file2 ...} atool Archive
Atool Command: List Files In Archive
atool {-l|--list} {path/to/archive.zip} atool Archive
Atool Command: Extract Archive To Specific Directory
atool {-X|--extract-to} {path/to/output_directory} {archive.rar} atool Archive
Atool Command: Display File Content From Archive
atool {-c|--cat} {archive.tar} {path/to/file_in_archive.txt} atool Archive
Atool Command: List Files With Pager
atool {-l|--list} {-p|--pager} large_archive.tar.bz2 atool Archive
Atool Command: Extract Multiple Archives
atool {-x|--extract} {-e|--each} archive1.zip archive2.tar.gz *.rar atool Archive
Atool Command: Cat File In Archive
atool {-c|--cat} archive.tar path/to/file_in_archive.txt atool Archive
Atool Command: List Files
atool {-l|--list} path/to/archive.zip atool Archive
Atool Command: Extract To Directory
atool {-X|--extract-to} path/to/output_directory archive.rar atool Archive
Atool Command: Create Archive
atool {-a|--add} new_archive.zip path/to/file1 path/to/file2 ... Auditd
Verified for current stable LTS auditd Archive
Auditd Command: Start Daemon Debug Mode
auditd -d auditd Archive
Auditd Command: Start Daemon
auditd auditd Archive
Auditd Command: Start Daemon On Demand
auditd -l Audtool
Verified for current stable LTS audtool Operations
Audtool Command: Playback Playpause
audtool playback-playpause audtool Operations
Audtool Command: Current Song
audtool current-song audtool Operations
Audtool Command: Set Volume
audtool set-volume <100> audtool Operations
Audtool Command: Playlist Advance
audtool playlist-advance audtool Operations
Audtool Command: Current Song Bitrate Kbps
audtool current-song-bitrate-kbps audtool Operations
Audtool Command: Mainwin Show
audtool mainwin-show audtool Operations
Audtool Command: Help
audtool help audtool Operations
Audtool Command: Preferences Show
audtool preferences-show Automake
Verified for current stable LTS automake Operations
Automake Command: Generate Makefile In Foreign Mode
automake --foreign automake Operations
Automake Command: Display Help
automake --help automake Operations
Automake Command: Verbose Output
automake [-v|--verbose] automake Operations
Automake Command: Add Missing Files
automake [-a|--add-missing] automake Operations
Automake Command: Add Verbose Output
automake {-v|--verbose} automake Operations
Automake Command: Add Missing Standard Files
automake {-a|--add-missing} automake Operations
Automake Command: Regenerate Makefiles
automake Autopep8
Verified for current stable LTS autopep8 Operations
Autopep8 Command: Format File In Place
autopep8 --in-place <path/to/file.py> autopep8 Operations
Autopep8 Command: Format File To Stdout
autopep8 <path/to/file.py> --max-line-length <length> autopep8 Operations
Autopep8 Command: Format File With Diff
autopep8 --diff <path/to/file> autopep8 Operations
Autopep8 Command: Format Directory Recursively In Place
autopep8 --in-place --recursive <path/to/directory> Atuin
Verified for current stable LTS atuin Operations
Atuin Command: Install Atuin
eval "$(atuin init <bash|zsh|fish>)" atuin Operations
Atuin Command: Login To Sync Server
atuin login -u <username> -p <password> atuin Operations
Atuin Command: Import History
atuin import auto atuin Search
Atuin Command: Search History
atuin search <command> atuin Operations
Atuin Command: Register Account
atuin register -u <username> -e <email> -p <password> atuin Operations
Atuin Command: Sync History
atuin sync atuin Operations
Atuin Command: Install
eval "$(atuin init <bash|zsh|fish>)" atuin Operations
Atuin Command: Login
atuin login -u <username> -p <password> Autojump
Verified for current stable LTS autojump Search
Autojump Command: Jump To Directory
j <pattern> autojump Operations
Autojump Command: Purge Non Existing Directories
j --purge autojump Search
Autojump Command: Jump To Subdirectory
jc <pattern> autojump Operations
Autojump Command: Add Autojump Aliases
source /usr/share/autojump/autojump.<bash|fish|zsh> autojump Search
Autojump Command: Open Directory In File Manager
jo <pattern> autojump Operations
Autojump Command: Show Autojump Entries
j -s autojump Search
Autojump Command: Jump To Sub Directory
jc <pattern> Autoload
Verified for current stable LTS autoload Operations
Autoload Command: Autoload Function Immediately
autoload +X <function_name> autoload Operations
Autoload Command: Autoload Completion System
autoload -Uz compinit && compinit autoload Operations
Autoload Command: Autoload Function Recommended
autoload -Uz <function_name> autoload Operations
Autoload Command: Autoload Functions From Directory
fpath=(<path/to/functions_dir> $fpath) && autoload -Uz <function_name> autoload Operations
Autoload Command: Autoload Add Zsh Hook
autoload -Uz add-zsh-hook autoload Operations
Autoload Command: Autoload Function
autoload <function_name> autoload Operations
Autoload Command: Autoload And Resolve Function
autoload +X <function_name> autoload Operations
Autoload Command: Autoload Function Recommended
autoload -Uz <function_name> autoload Operations
Autoload Command: Autoload Functions From Directory
fpath=(<path/to/functions_dir> $fpath) && autoload -Uz <function_name> autoload Operations
Autoload Command: Autoload Add Zsh Hook Utility
autoload -Uz add-zsh-hook autoload Operations
Autoload Command: Autoload Function By Name
autoload <function_name> autoload Operations
Autoload Command: Autoload Completion System
autoload -Uz compinit && compinit Autoflake
Verified for current stable LTS autoflake Operations
Autoflake Command: Remove Unused Imports From Multiple Files
autoflake --remove-all-unused-imports <path/to/file1.py path/to/file2.py ...> autoflake Operations
Autoflake Command: Remove Unused Variables Single File Diff
autoflake --remove-unused-variables <path/to/file.py> autoflake Operations
Autoflake Command: Remove Unused Imports Multiple Files Diff
autoflake --remove-all-unused-imports <path/to/file1.py path/to/file2.py ...> autoflake Operations
Autoflake Command: Remove Unused Variables Recursive In Place
autoflake --remove-unused-variables --in-place --recursive <path/to/directory> autoflake Operations
Autoflake Command: Remove Unused Variables From Single File
autoflake --remove-unused-variables <path/to/file.py> autoflake Operations
Autoflake Command: Remove Unused Variables In Place From File
autoflake --remove-unused-variables --in-place <path/to/file.py> autoflake Operations
Autoflake Command: Remove Unused Variables In Place Recursively From Directory
autoflake --remove-unused-variables --in-place --recursive <path/to/directory> autoflake Operations
Autoflake Command: Remove Unused Variables Single File In Place
autoflake --remove-unused-variables --in-place <path/to/file.py> Awk
Verified for current stable LTS awk Operations
Awk Command: Print Second Column Foo
awk '/<foo>/ {print $2}' <path/to/file> awk Operations
Awk Command: Print Columns Between Min Max
awk '($10 >= <min_value> && $10 <= <max_value>)' <path/to/file> awk Operations
Awk Command: Print Users With Uid 1000
awk 'BEGIN {FS=":";printf "% -20s %6s %25s\n", "Name", "UID", "Shell"} $4 >= 1000 {printf "% -20s %6d %25s\n", $1, $4, $7}' /etc/passwd awk Operations
Awk Command: Print Users With Uid Greater Than 1000
awk 'BEGIN {FS=":";printf "%-20s %6s %25s\n", "Name", "UID", "Shell"} $4 >= 1000 {printf "%-20s %6d %25s\n", $1, $4, $7}' /etc/passwd awk Operations
Awk Command: Print Fifth Column
awk '{print $5}' <path/to/file> awk Operations
Awk Command: Print Last Column Comma Separator
awk -F ',' '{print $NF}' <path/to/file> awk Operations
Awk Command: Sum First Column
awk '{s+=$1} END {print s}' <path/to/file> awk Operations
Awk Command: Print Every Third Line
awk 'NR%3==1' <path/to/file> awk Search
Awk Command: Conditional Printing
awk '{if ($1 == "foo") print "Exact match foo"; else if ($1 ~ "bar") print "Partial match bar"; else print "Baz"}' <path/to/file> awk Operations
Awk Command: Print Column Between Min Max
awk '($10 >= <min_value> && $10 <= <max_value>)' <path/to/file> Aws Accessanalyzer
Verified for current stable LTS aws-accessanalyzer Operations
Aws Accessanalyzer Command: Delete Analyzer
aws accessanalyzer delete-analyzer --analyzer-arn <analyzer_arn> aws-accessanalyzer Operations
Aws Accessanalyzer Command: List Analyzers
aws accessanalyzer list-analyzers aws-accessanalyzer Operations
Aws Accessanalyzer Command: Create Analyzer
aws accessanalyzer create-analyzer --analyzer-name <analyzer_name> --type <type> --tags <tags> aws-accessanalyzer HTTP
Aws Accessanalyzer Command: Get Analyzer
aws accessanalyzer get-analyzer --analyzer-arn <analyzer_arn> aws-accessanalyzer Operations
Aws Accessanalyzer Command: Update Analyzer
aws accessanalyzer update-analyzer --analyzer-arn <analyzer_arn> --tags <new_tags> aws-accessanalyzer Archive
Aws Accessanalyzer Command: Create Archive Rule
aws accessanalyzer create-archive-rule --analyzer-arn <analyzer_arn> --rule-name <rule_name> --filter <filter> aws-accessanalyzer Archive
Aws Accessanalyzer Command: List Archive Rules
aws accessanalyzer list-archive-rules --analyzer-arn <analyzer_arn> aws-accessanalyzer Archive
Aws Accessanalyzer Command: Delete Archive Rule
aws accessanalyzer delete-archive-rule --analyzer-arn <analyzer_arn> --rule-name <rule_name> Avrdude
Verified for current stable LTS avrdude Operations
Avrdude Command: List Avr Devices
avrdude -p \? avrdude Operations
Avrdude Command: Read Flash Rom
avrdude -p <part_no> -c <programmer_id> -U flash:r:<file.hex>:i avrdude Operations
Avrdude Command: Write Flash Rom
avrdude -p <part_no> -c <programmer> -U flash:w:<file.hex> avrdude Operations
Avrdude Command: List Avr Programmers
avrdude -c \? avrdude Operations
Avrdude Command: Read Flash Rom
avrdude -p <part_no> -c <programmer_id> -U flash:r:<file.hex>:i avrdude Operations
Avrdude Command: Write Flash Rom
avrdude -p <part_no> -c <programmer> -U flash:w:<file.hex> avrdude Operations
Avrdude Command: List Avr Programmers
avrdude -c \? avrdude Operations
Avrdude Command: List Avr Devices
avrdude -p \? Autossh
Verified for current stable LTS autossh Archive
Autossh Command: Start Ssh Session Monitoring
autossh -M <monitor_port> "<ssh_command>" autossh Operations
Autossh Command: Fork Autossh Background No Shell
autossh -f -M <monitor_port> -N "<ssh_command>" autossh Operations
Autossh Command: Logging Autossh Output
AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE=<path/to/autossh_log_file.log> autossh -f -M <monitor_port> -v -E <path/to/ssh_log_file.log> <ssh_command> autossh Archive
Autossh Command: Start Ssh Session
autossh -M <monitor_port> "<ssh_command>" autossh Operations
Autossh Command: Fork Background No Shell
autossh -f -M <monitor_port> -N "<ssh_command>" autossh Operations
Autossh Command: Background No Monitoring Keepalive
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "<ssh_command>" autossh Operations
Autossh Command: Background No Monitoring Exit On Failure
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L <local_port>:localhost:<remote_port> <user>@<host> autossh Operations
Autossh Command: Forward Local Port To Remote
autossh -M <monitor_port> -L <local_port>:localhost:<remote_port> <user>@<host> autossh Operations
Autossh Command: Background Ssh With Keep Alive
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "<ssh_command>" autossh Operations
Autossh Command: Background Ssh No Monitor No Shell
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L <local_port>:localhost:<remote_port> <user>@<host> autossh Operations
Autossh Command: Forward Local Port
autossh -M <monitor_port> -L <local_port>:localhost:<remote_port> <user>@<host> autossh Operations
Autossh Command: Background Debug Logging
AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE=<path/to/autossh_log_file.log> autossh -f -M <monitor_port> -v -E <path/to/ssh_log_file.log> <ssh_command> A2ping
Verified for current stable LTS a2ping Operations
A2ping Command: Pass Extra Args To Gs
a2ping --gsextra <arguments> <path/to/file> a2ping Operations
A2ping Command: Pass Extra Args To External Program
a2ping --extra <arguments> <path/to/file> a2ping Video
A2ping Command: Convert Image To Pdf
a2ping <path/to/image.ext> <path/to/output.pdf> a2ping Operations
A2ping Command: Compress Document
a2ping --nocompress <none|zip|best|flate> <path/to/file> a2ping Operations
A2ping Command: Scan Hires Bounding Box
a2ping --nohires <path/to/file> a2ping Operations
A2ping Command: Allow Content Below Origin
a2ping --below <path/to/file> a2ping Operations
A2ping Command: Display Help
a2ping -h a2ping Operations
A2ping Command: Pass Extra Gs Arguments
a2ping --gsextra <arguments> <path/to/file> a2ping Operations
A2ping Command: Pass Extra Program Arguments
a2ping --extra <arguments> <path/to/file> Adb Disconnect
Verified for current stable LTS adb-disconnect Operations
Adb Disconnect Command: Adb Disconnect
adb disconnect adb-disconnect Operations
Adb Disconnect Command: Disconnect
adb disconnect Adb Kill Server
Verified for current stable LTS adb-kill-server Operations
Adb Kill Server Command: Kill Adb Server
adb kill-server Adb Start Server
Verified for current stable LTS adb-start-server Archive
Adb Start Server Command: Start Adb Server
adb start-server Afconvert
Verified for current stable LTS afconvert Operations
Afconvert Command: Use Specific Compression Level
afconvert -X<0..7> <path/to/input_file> <path/to/output_file1 path/to/output_file2 ...> afconvert Operations
Afconvert Command: Use Specific Extension
afconvert -a <extension> <path/to/input_file> <path/to/output_file1 path/to/output_file2 ...> Aireplay Ng
Verified for current stable LTS aireplay-ng Operations
Aireplay Ng Command: Send Disassociate Packets
sudo aireplay-ng --deauth <count> --bssid <ap_mac> --dmac <client_mac> <interface> aireplay-ng Operations
Aireplay Ng Command: Send Deauth Packets
sudo aireplay-ng --deauth <count> --bssid <ap_mac> --dmac <client_mac> <interface> Alr Help
Verified for current stable LTS alr-help Operations
Alr Help Command: Show Crate Rules
alr help identifiers alr-help Operations
Alr Help Command: Display Top Level Help
alr help alr-help Operations
Alr Help Command: Display Help For Subcommand
alr help <subcommand> alr-help Operations
Alr Help Command: Show Crate Name And Version Rules
alr help identifiers Aws Backup
Verified for current stable LTS aws-backup Operations
Aws Backup Command: Create Backup Plan
aws backup create-backup-plan --backup-plan <plan> aws-backup Operations
Aws Backup Command: List Backup Plans
aws backup list-backup-plans aws-backup Operations
Aws Backup Command: List Report Jobs
aws backup list-report-jobs aws-backup HTTP
Aws Backup Command: Get Backup Plan
aws backup get-backup-plan --backup-plan-id <id> aws-backup Operations
Aws Backup Command: Delete Backup Plan
aws backup delete-backup-plan --backup-plan-id <id> Aws Acm
Verified for current stable LTS aws-acm HTTP
Aws Acm Command: Import Certificate
aws acm import-certificate --certificate-arn <certificate_arn> --certificate <certificate> --private-key <private_key> --certificate-chain <certificate_chain> aws-acm HTTP
Aws Acm Command: Describe Certificate
aws acm describe-certificate --certificate-arn <certificate_arn> aws-acm HTTP
Aws Acm Command: Delete Certificate
aws acm delete-certificate --certificate-arn <certificate_arn> aws-acm HTTP
Aws Acm Command: List Certificate Validations
aws acm list-certificates --certificate-statuses <status> aws-acm HTTP
Aws Acm Command: Update Certificate Options
aws acm update-certificate-options --certificate-arn <certificate_arn> --options <options> aws-acm HTTP
Aws Acm Command: List Certificates
aws acm list-certificates aws-acm HTTP
Aws Acm Command: Request Certificate
aws acm request-certificate --domain-name <domain_name> --validation-method <validation_method> aws-acm HTTP
Aws Acm Command: Get Certificate
aws acm get-certificate --certificate-arn <certificate_arn> Ansible Inventory
Verified for current stable LTS ansible-inventory Operations
Ansible Inventory Command: Dump Default Inventory To File
ansible-inventory --list --output path/to/file ansible-inventory Operations
Ansible Inventory Command: Display Default Inventory
ansible-inventory --list ansible-inventory Operations
Ansible Inventory Command: Display Custom Inventory
ansible-inventory --list {-i|--inventory-file} path/to/file_or_script_or_directory ansible-inventory Operations
Ansible Inventory Command: Display Default Inventory Yaml
ansible-inventory --list {-y|--yaml} ansible-inventory Operations
Ansible Inventory Command: Dump Inventory To File
ansible-inventory --list --output path/to/file Aws Amplify
Verified for current stable LTS aws-amplify Operations
Aws Amplify Command: Create App
aws amplify create-app --name <app_name> --description <description> --repository <repo_url> --platform <platform> --environment-variables <env_vars> --tags <tags> aws-amplify Operations
Aws Amplify Command: List Apps
aws amplify list-apps aws-amplify Operations
Aws Amplify Command: Update App
aws amplify update-app --app-id <app_id> --name <new_name> --description <new_description> --repository <new_repo_url> --environment-variables <new_env_vars> --tags <new_tags> aws-amplify Operations
Aws Amplify Command: Delete Backend Environment
aws amplify delete-backend-environment --app-id <app_id> --environment-name <env_name> aws-amplify Operations
Aws Amplify Command: Delete App
aws amplify delete-app --app-id <app_id> aws-amplify HTTP
Aws Amplify Command: Get App
aws amplify get-app --app-id <app_id> aws-amplify Operations
Aws Amplify Command: Create Backend Environment
aws amplify create-backend-environment --app-id <app_id> --environment-name <env_name> --deployment-artifacts <artifacts> aws-amplify Operations
Aws Amplify Command: List Backend Environments
aws amplify list-backend-environments --app-id <app_id> Anytopnm
Verified for current stable LTS anytopnm Video
Anytopnm Command: Convert Image To Pbm Pgm Ppm
anytopnm <path/to/input> > <path/to/output.pnm> anytopnm Operations
Anytopnm Command: Display Version
anytopnm -v anytopnm Video
Anytopnm Command: Convert Image
anytopnm <path/to/input> > <path/to/output.pnm> Apropos
Verified for current stable LTS apropos Search
Apropos Command: Search For Keyword
apropos <regex> apropos Search
Apropos Command: Search Long Output
apropos -l <regex> apropos Search
Apropos Command: Search For All Matching Regex
apropos <regex_1> -a <regex_2> -a <regex_3> apropos Search
Apropos Command: Search Keyword
apropos <regex> apropos Search
Apropos Command: Search Long Output
apropos -l <regex> apropos Search
Apropos Command: Search Multiple Regex
apropos <regex_1> -a <regex_2> -a <regex_3> Argospm
Verified for current stable LTS argospm Operations
Argospm Command: View Documentation For Original Command
tldr argos-translate argospm Operations
Argospm Command: ViewDocumentation
tldr argos-translate Aws Batch
Verified for current stable LTS aws-batch Operations
Aws Batch Command: List Jobs
aws batch list-jobs --job-queue <queue_name> aws-batch Operations
Aws Batch Command: Create Compute Environment
aws batch create-compute-environment --compute-environment-name <compute_environment_name> --type <type> aws-batch Operations
Aws Batch Command: Create Job Queue
aws batch create-job-queue --job-queue-name <queue_name> --priority <priority> --compute-environment-order <compute_environment> aws-batch Operations
Aws Batch Command: Describe Jobs
aws batch describe-jobs --jobs <jobs> aws-batch Operations
Aws Batch Command: Submit Job
aws batch submit-job --job-name <job_name> --job-queue <job_queue> --job-definition <job_definition> aws-batch Operations
Aws Batch Command: Cancel Job
aws batch cancel-job --job-id <job_id> --reason <reason> Aws Acm Pca
Verified for current stable LTS aws-acm-pca HTTP
Aws Acm Pca Command: Create Certificate Authority
aws acm-pca create-certificate-authority --certificate-authority-configuration <ca_config> --idempotency-token <token> --permanent-deletion-time-in-days <number> aws-acm-pca HTTP
Aws Acm Pca Command: Describe Certificate Authority
aws acm-pca describe-certificate-authority --certificate-authority-arn <ca_arn> aws-acm-pca HTTP
Aws Acm Pca Command: Update Certificate Authority
aws acm-pca update-certificate-authority --certificate-authority-arn <ca_arn> --certificate-authority-configuration <ca_config> --status <status> aws-acm-pca HTTP
Aws Acm Pca Command: Issue Certificate
aws acm-pca issue-certificate --certificate-authority-arn <ca_arn> --certificate-signing-request <cert_signing_request> --signing-algorithm <algorithm> --validity <validity> aws-acm-pca HTTP
Aws Acm Pca Command: Get Certificate
aws acm-pca get-certificate --certificate-authority-arn <ca_arn> --certificate-arn <cert_arn> aws-acm-pca HTTP
Aws Acm Pca Command: List Certificate Authorities
aws acm-pca list-certificate-authorities aws-acm-pca HTTP
Aws Acm Pca Command: Delete Certificate Authority
aws acm-pca delete-certificate-authority --certificate-authority-arn <ca_arn> aws-acm-pca HTTP
Aws Acm Pca Command: Revoke Certificate
aws acm-pca revoke-certificate --certificate-authority-arn <ca_arn> --certificate-serial <serial> --reason <reason> Aws Codeartifact
Verified for current stable LTS aws-codeartifact Operations
Aws Codeartifact Command: Login
aws codeartifact login --tool <npm|pip|twine> --domain <your_domain> --repository <repository_name> aws-codeartifact HTTP
Aws Codeartifact Command: Get Repository Endpoint
aws codeartifact get-repository-endpoint --domain <your_domain> --repository <repository_name> --format <npm|pypi|maven|nuget|generic> aws-codeartifact Operations
Aws Codeartifact Command: List Domains
aws codeartifact list-domains aws-codeartifact Operations
Aws Codeartifact Command: Help
aws codeartifact help aws-codeartifact Operations
Aws Codeartifact Command: Help Specific Subcommand
aws codeartifact <subcommand> help Aws Cloudwatch
Verified for current stable LTS aws-cloudwatch Operations
Aws Cloudwatch Command: List Dashboards
aws cloudwatch list-dashboards aws-cloudwatch HTTP
Aws Cloudwatch Command: Get Dashboard
aws cloudwatch get-dashboard --dashboard-name <dashboard_name> aws-cloudwatch Operations
Aws Cloudwatch Command: Describe Alarms
aws cloudwatch describe-alarms aws-cloudwatch Operations
Aws Cloudwatch Command: Put Metric Alarm
aws cloudwatch put-metric-alarm --alarm-name <alarm_name> --evaluation-periods <evaluation_periods> --comparison-operator <comparison_operator> aws-cloudwatch Operations
Aws Cloudwatch Command: Delete Dashboards
aws cloudwatch delete-dashboards --dashboard-names <dashboard_names> aws-cloudwatch Operations
Aws Cloudwatch Command: List Metrics
aws cloudwatch list-metrics aws-cloudwatch Operations
Aws Cloudwatch Command: Delete Alarms
aws cloudwatch delete-alarms --alarm-names <alarm_names> Atktopbm
Verified for current stable LTS atktopbm Video
Atktopbm Command: Convert Andrew Toolkit Raster To Pbm
atktopbm <path/to/image.atk> > <path/to/output.pbm> atktopbm Video
Atktopbm Command: Convert Atk To Pbm
atktopbm <path/to/image.atk> > <path/to/output.pbm> Atom
Verified for current stable LTS atom Operations
Atom Command: Run In Foreground
atom -f atom Operations
Atom Command: Open File Or Directory
atom <path/to/file_or_directory> atom Operations
Atom Command: Open File Or Directory New Window
atom -n <path/to/file_or_directory> atom Operations
Atom Command: Open File Or Directory Existing Window
atom -a <path/to/file_or_directory> atom Operations
Atom Command: Open In Safe Mode
atom --safe atom Operations
Atom Command: Wait For Window Close
atom -w atom Operations
Atom Command: Open In Foreground
atom -f Aws Cloud9
Verified for current stable LTS aws-cloud9 Operations
Aws Cloud9 Command: Create Environment Ec2
aws cloud9 create-environment-ec2 --name <name> --instance-type <instance_type> aws-cloud9 Operations
Aws Cloud9 Command: Describe Environments
aws cloud9 describe-environments --environment-ids <environment_ids> aws-cloud9 Operations
Aws Cloud9 Command: Describe Environment Status
aws cloud9 describe-environment-status --environment-id <environment_id> aws-cloud9 Operations
Aws Cloud9 Command: Delete Environment Membership
aws cloud9 delete-environment-membership --environment-id <environment_id> --user-arn <user_arn> aws-cloud9 Operations
Aws Cloud9 Command: List Environments
aws cloud9 list-environments aws-cloud9 Operations
Aws Cloud9 Command: Create Environment Membership
aws cloud9 create-environment-membership --environment-id <environment_id> --user-arn <user_arn> --permissions <permissions> aws-cloud9 Operations
Aws Cloud9 Command: Delete Environment
aws cloud9 delete-environment --environment-id <environment_id> Aws Ce
Verified for current stable LTS aws-ce Operations
Aws Ce Command: Create Anomaly Monitor
aws ce create-anomaly-monitor --monitor <monitor_name> --monitor-type <monitor_type> aws-ce HTTP
Aws Ce Command: Get Anomalies
aws ce get-anomalies --monitor-arn <monitor_arn> --start-time <start_time> --end-time <end_time> aws-ce HTTP
Aws Ce Command: Get Cost Forecast
aws ce get-cost-forecast --time-period <start_date>/<end_date> --granularity <granularity> --metric <metric> aws-ce Operations
Aws Ce Command: List Cost Category Definitions
aws ce list-cost-category-definitions aws-ce Operations
Aws Ce Command: Tag Resource
aws ce tag-resource --resource-arn <resource_arn> --tags <tags> aws-ce Operations
Aws Ce Command: Create Anomaly Subscription
aws ce create-anomaly-subscription --subscription <subscription_name> --monitor-arn <monitor_arn> --subscribers <subscribers> aws-ce HTTP
Aws Ce Command: Get Cost And Usage
aws ce get-cost-and-usage --time-period <start_date>/<end_date> --granularity <granularity> --metrics <metrics> aws-ce HTTP
Aws Ce Command: Get Reservation Utilization
aws ce get-reservation-utilization --time-period <start_date>/<end_date> --granularity <granularity> Aws Cloudformation
Verified for current stable LTS aws-cloudformation Operations
Aws Cloudformation Command: Create Stack
aws cloudformation create-stack --stack-name <stack-name> --region <region> --template-body {file://path/to/file.yml} --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: List Running Stacks
aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: Describe Stacks
aws cloudformation describe-stacks --stack-name <stack-id> --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: Detect Stack Drift
aws cloudformation detect-stack-drift --stack-name <stack-id> --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: Delete Stack
aws cloudformation delete-stack --stack-name <stack-name> --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: List Stacks
aws cloudformation list-stacks --profile <profile> aws-cloudformation Operations
Aws Cloudformation Command: Describe Stack Resource Drifts
aws cloudformation describe-stack-resource-drifts --stack-name <stack-drift-detection-id> --profile <profile> Aws Codecommit
Verified for current stable LTS aws-codecommit Operations
Aws Codecommit Command: Display Help
aws codecommit help aws-codecommit Operations
Aws Codecommit Command: Display Help Specific Command
aws codecommit <command> help Aws Configure
Verified for current stable LTS aws-configure Operations
Aws Configure Command: Configure Interactive
aws configure aws-configure Operations
Aws Configure Command: Configure Profile Interactive
aws configure --profile <profile_name> aws-configure HTTP
Aws Configure Command: Get Config Value Profile
aws configure get <name> --profile <profile_name> aws-configure Operations
Aws Configure Command: Set Config Value
aws configure set <name> <value> aws-configure Operations
Aws Configure Command: Set Config Value Profile
aws configure set <name> <value> --profile <profile_name> aws-configure Operations
Aws Configure Command: List Configurations Profile
aws configure list --profile <profile_name> aws-configure HTTP
Aws Configure Command: Get Config Value
aws configure get <name> aws-configure Operations
Aws Configure Command: List Configurations
aws configure list Aws Ec2
Verified for current stable LTS aws-ec2 Operations
Aws Ec2 Command: Describe All Instances
aws ec2 describe-instances aws-ec2 Operations
Aws Ec2 Command: Delete Volume
aws ec2 delete-volume --volume-id <volume_id> aws-ec2 Video
Aws Ec2 Command: List Available Amis
aws ec2 describe-images aws-ec2 Operations
Aws Ec2 Command: Describe Subcommand Help
aws ec2 <subcommand> help aws-ec2 Operations
Aws Ec2 Command: Describe Instances By Id
aws ec2 describe-instances --instance-ids <instance_id> aws-ec2 Operations
Aws Ec2 Command: Describe All Volumes
aws ec2 describe-volumes aws-ec2 Operations
Aws Ec2 Command: Show Available Commands
aws ec2 help aws-ec2 Operations
Aws Ec2 Command: Create Snapshot From Volume
aws ec2 create-snapshot --volume-id <volume_id> Aws Cognito Idp
Verified for current stable LTS aws-cognito-idp Operations
Aws Cognito Idp Command: List User Pools
aws cognito-idp list-user-pools --max-results <10> aws-cognito-idp Operations
Aws Cognito Idp Command: Create User Pool
aws cognito-idp create-user-pool --pool-name <name> aws-cognito-idp Operations
Aws Cognito Idp Command: Admin Create User
aws cognito-idp admin-create-user --username <username> --user-pool-id <user_pool_id> aws-cognito-idp Operations
Aws Cognito Idp Command: Delete User Pool
aws cognito-idp delete-user-pool --user-pool-id <user_pool_id> aws-cognito-idp Operations
Aws Cognito Idp Command: List Users
aws cognito-idp list-users --user-pool-id <user_pool_id> aws-cognito-idp Operations
Aws Cognito Idp Command: Admin Delete User
aws cognito-idp admin-delete-user --username <username> --user-pool-id <user_pool_id> Aws Help
Verified for current stable LTS aws-help Operations
Aws Help Command: Display Help
aws help aws-help Operations
Aws Help Command: List Topics
aws help topics aws-help Operations
Aws Help Command: Help Specific Topic
aws help <topic_name> Aws Dynamodb
Verified for current stable LTS aws-dynamodb Operations
Aws Dynamodb Command: List Tables
aws dynamodb list-tables aws-dynamodb Operations
Aws Dynamodb Command: Describe Table
aws dynamodb describe-table --table-name <table_name> aws-dynamodb HTTP
Aws Dynamodb Command: Get Item
aws dynamodb get-item --table-name <table_name> --key '{{{"ID": {"N": "1"}}}}' aws-dynamodb Operations
Aws Dynamodb Command: Scan
aws dynamodb scan --table-name <table_name> aws-dynamodb Operations
Aws Dynamodb Command: Create Table
aws dynamodb create-table --table-name <table_name> --attribute-definitions <AttributeName=S,AttributeType=S> --key-schema <AttributeName=S,KeyType=HASH> --provisioned-throughput <ReadCapacityUnits=5,WriteCapacityUnits=5> aws-dynamodb Operations
Aws Dynamodb Command: Put Item
aws dynamodb put-item --table-name <table_name> --item '{{{"AttributeName": {"S": "value"}}}}' aws-dynamodb Operations
Aws Dynamodb Command: Update Item
aws dynamodb update-item --table-name <table_name> --key '{{{"ID": {"N": "1"}}}}' --update-expression "{SET Name = :n}" --expression-attribute-values '{{{":n": {"S": "Jane"}}}}' aws-dynamodb Operations
Aws Dynamodb Command: Delete Item
aws dynamodb delete-item --table-name <table_name> --key '{{{"ID": {"N": "1"}}}}' Aws Eks
Verified for current stable LTS aws-eks Operations
Aws Eks Command: Update Kubeconfig
aws eks update-kubeconfig --name <cluster_name> aws-eks Operations
Aws Eks Command: List Clusters
aws eks list-clusters aws-eks Operations
Aws Eks Command: Delete Cluster
aws eks delete-cluster --name <cluster_name> aws-eks Operations
Aws Eks Command: Create Cluster
aws eks create-cluster --name <cluster_name> --role-arn <eks_service_role_arn> --resources-vpc-config subnetIds=<subnet_ids>,securityGroupIds=<security_group_ids> aws-eks Operations
Aws Eks Command: Describe Cluster
aws eks describe-cluster --name <cluster_name> aws-eks Operations
Aws Eks Command: List Nodegroups
aws eks list-nodegroups --cluster-name <cluster_name> aws-eks Operations
Aws Eks Command: Describe Nodegroup
aws eks describe-nodegroup --cluster-name <cluster_name> --nodegroup-name <nodegroup_name> Aws Google Auth
Verified for current stable LTS aws-google-auth Operations
Aws Google Auth Command: Login Ask Role
aws-google-auth -u <example@example.com> -I <$GOOGLE_IDP_ID> -S <$GOOGLE_SP_ID> -d <3600> -a aws-google-auth Operations
Aws Google Auth Command: Display Help
aws-google-auth -h aws-google-auth Operations
Aws Google Auth Command: Login With Google Sso
aws-google-auth -u <example@example.com> -I <$GOOGLE_IDP_ID> -S <$GOOGLE_SP_ID> -d <3600> aws-google-auth Operations
Aws Google Auth Command: Resolve Aliases
aws-google-auth -u <example@example.com> -I <$GOOGLE_IDP_ID> -S <$GOOGLE_SP_ID> -d <3600> -a --resolve-aliases Aws Ecr
Verified for current stable LTS aws-ecr Video
Aws Ecr Command: Create Repository
aws ecr create-repository --repository-name <repository> --image-scanning-configuration scanOnPush=<true|false> --region <region> aws-ecr Video
Aws Ecr Command: Push Image
docker push <aws_account_id>.dkr.ecr.<region>.amazonaws.com/<container_name>:<tag> aws-ecr Video
Aws Ecr Command: Delete Image
aws ecr batch-delete-image --repository-name <repository> --image-ids imageTag=<latest> aws-ecr HTTP
Aws Ecr Command: Get Login Password
aws ecr get-login-password --region <region> | <docker login> --username AWS --password-stdin <aws_account_id>.dkr.ecr.<region>.amazonaws.com aws-ecr Video
Aws Ecr Command: Tag Local Image
docker tag <container_name>:<tag> <aws_account_id>.dkr.ecr.<region>.amazonaws.com/<container_name>:<tag> aws-ecr Video
Aws Ecr Command: Pull Image
docker pull <aws_account_id>.dkr.ecr.<region>.amazonaws.com/<container_name>:<tag> aws-ecr Operations
Aws Ecr Command: Delete Repository
aws ecr delete-repository --repository-name <repository> --force aws-ecr Video
Aws Ecr Command: List Images
aws ecr list-images --repository-name <repository> Aws Iam
Verified for current stable LTS aws-iam Operations
Aws Iam Command: List Users
aws iam list-users aws-iam Operations
Aws Iam Command: List Groups
aws iam list-groups aws-iam Operations
Aws Iam Command: List Access Keys
aws iam list-access-keys aws-iam Operations
Aws Iam Command: Display Help
aws iam help aws-iam Operations
Aws Iam Command: List Policies
aws iam list-policies aws-iam HTTP
Aws Iam Command: Get Users In Group
aws iam get-group --group-name <group_name> aws-iam HTTP
Aws Iam Command: Describe Iam Policy
aws iam get-policy --policy-arn arn:aws:iam::aws:policy/<policy_name> aws-iam Operations
Aws Iam Command: List Access Keys For User
aws iam list-access-keys --user-name <user_name> Aws Kendra
Verified for current stable LTS aws-kendra Operations
Aws Kendra Command: List Data Sources
aws kendra list-data-sources aws-kendra Operations
Aws Kendra Command: Create Index
aws kendra create-index --name <name> --role-arn <role_arn> aws-kendra Operations
Aws Kendra Command: List Indexes
aws kendra list-indexes aws-kendra Operations
Aws Kendra Command: Describe Index
aws kendra describe-index --id <index_id> aws-kendra Operations
Aws Kendra Command: Describe Data Source
aws kendra describe-data-source --id <data_source_id> aws-kendra Operations
Aws Kendra Command: List Query Suggestions
aws kendra list-query-suggestions --index-id <index_id> --query-text <query_text> Aws Kafka
Verified for current stable LTS aws-kafka Operations
Aws Kafka Command: Create Cluster
aws kafka create-cluster --cluster-name <cluster_name> --broker-node-group-info instanceType=<instance_type>,clientSubnets=<subnet_id1 subnet_id2 ...> --kafka-version <version> --number-of-broker-nodes <number> aws-kafka Operations
Aws Kafka Command: List Clusters
aws kafka list-clusters aws-kafka Operations
Aws Kafka Command: List Configurations
aws kafka list-configurations aws-kafka Operations
Aws Kafka Command: Delete Cluster
aws kafka delete-cluster --cluster-arn <cluster_arn> aws-kafka Operations
Aws Kafka Command: Describe Cluster
aws kafka describe-cluster --cluster-arn <cluster_arn> aws-kafka Operations
Aws Kafka Command: Create Configuration
aws kafka create-configuration --name <configuration_name> --server-properties file://<path/to/configuration_file.txt> aws-kafka Operations
Aws Kafka Command: Describe Configuration
aws kafka describe-configuration --arn <configuration_arn> aws-kafka Operations
Aws Kafka Command: Update Cluster Configuration
aws kafka update-cluster-configuration --cluster-arn <cluster_arn> --configuration-info arn=<configuration_arn>,revision=<configuration_revision> Aws Lambda
Verified for current stable LTS aws-lambda HTTP
Aws Lambda Command: Run Function With Input Payload
aws lambda invoke --function-name <name> --payload <json> <path/to/response.json> aws-lambda Operations
Aws Lambda Command: List Function Aliases
aws lambda list-aliases --function-name <name> aws-lambda HTTP
Aws Lambda Command: Run Function
aws lambda invoke --function-name <name> <path/to/response.json> aws-lambda Operations
Aws Lambda Command: List Functions
aws lambda list-functions aws-lambda HTTP
Aws Lambda Command: Display Function Configuration
aws lambda get-function-configuration --function-name <name> aws-lambda HTTP
Aws Lambda Command: Display Reserved Concurrency Configuration
aws lambda get-function-concurrency --function-name <name> aws-lambda HTTP
Aws Lambda Command: List Invoking Services
aws lambda get-policy --function-name <name> Aws Lightsail
Verified for current stable LTS aws-lightsail HTTP
Aws Lightsail Command: Get Instances
aws lightsail get-instances aws-lightsail Operations
Aws Lightsail Command: List Blueprints
aws lightsail list-blueprints aws-lightsail Operations
Aws Lightsail Command: Stop Instance
aws lightsail stop-instance --instance-name <name> aws-lightsail Operations
Aws Lightsail Command: List Bundles
aws lightsail list-bundles aws-lightsail Operations
Aws Lightsail Command: Create Instances
aws lightsail create-instances --instance-names <name> --availability-zone <region> --bundle-id <nano_2_0> --blueprint-id <blueprint_id> aws-lightsail HTTP
Aws Lightsail Command: Get Instance State
aws lightsail get-instance-state --instance-name <name> aws-lightsail Operations
Aws Lightsail Command: Delete Instance
aws lightsail delete-instance --instance-name <name> Aws Logs
Verified for current stable LTS aws-logs Containers
Aws Logs Command: List Log Groups
aws logs list-log-groups aws-logs Archive
Aws Logs Command: Start Live Tail
aws logs start-live-tail --log-group-identifiers <log_group_name> aws-logs Containers
Aws Logs Command: Tail Log Group
aws logs tail <log_group_name> --follow aws-logs Search
Aws Logs Command: Tail Log Group With Filter
aws logs tail <log_group_name> --filter-pattern <pattern> aws-logs Archive
Aws Logs Command: Export Logs To S3
aws logs create-export-task --log-group-name <log_group_name> --from <start_time> --to <end_time> --destination <s3_bucket_name> Aws Pricing
Verified for current stable LTS aws-pricing Operations
Aws Pricing Command: List Service Codes
aws pricing describe-services --region <us-east-1> aws-pricing HTTP
Aws Pricing Command: List Values For Attribute
aws pricing get-attribute-values --service-code <AmazonEC2> --attribute-name <instanceType> --region <us-east-1> aws-pricing Operations
Aws Pricing Command: List Attributes For Service Code
aws pricing describe-services --service-code <AmazonEC2> --region <us-east-1> aws-pricing HTTP
Aws Pricing Command: Print Pricing Information
aws pricing get-products --service-code <AmazonEC2> --region <us-east-1> aws-pricing HTTP
Aws Pricing Command: Print Pricing Information With Filters
aws pricing get-products --service-code <AmazonEC2> --filters "<Type=TERM_MATCH,Field=instanceType,Value=m5.xlarge>" "<Type=TERM_MATCH,Field=location,Value=US East (N. Virginia)>" --region <us-east-1> Aws Kinesis
Verified for current stable LTS aws-kinesis Operations
Aws Kinesis Command: List Streams
aws kinesis list-streams aws-kinesis Operations
Aws Kinesis Command: Put Record Inline Base64
aws kinesis put-record --stream-name <name> --partition-key <key> --data "$( echo "<my raw message>" | base64 )" aws-kinesis HTTP
Aws Kinesis Command: Get Records
aws kinesis get-records --shard-iterator <iterator> aws-kinesis Operations
Aws Kinesis Command: Put Record
aws kinesis put-record --stream-name <name> --partition-key <key> --data <base64_encoded_message> aws-kinesis Operations
Aws Kinesis Command: List Shards
aws kinesis list-shards --stream-name <name> aws-kinesis HTTP
Aws Kinesis Command: Get Shard Iterator
aws kinesis get-shard-iterator --shard-iterator-type TRIM_HORIZON --stream-name <name> --shard-id <id> Aws S3 Ls
Verified for current stable LTS aws-s3-ls Operations
Aws S3 Ls Command: List All Buckets
aws s3 ls aws-s3-ls Operations
Aws S3 Ls Command: List All Files In Bucket
aws s3 ls --recursive <bucket_name> aws-s3-ls Operations
Aws S3 Ls Command: List Files And Folders In Bucket
aws s3 ls s3://<bucket_name> aws-s3-ls Operations
Aws S3 Ls Command: List Files And Folders In Directory
aws s3 ls <bucket_name>/<path/to/directory>/ aws-s3-ls Operations
Aws S3 Ls Command: List Files With Prefix
aws s3 ls --recursive <bucket_name>/<path/to/directory>/<prefix> aws-s3-ls Operations
Aws S3 Ls Command: Display Help
aws s3 ls help Aws Route53
Verified for current stable LTS aws-route53 Operations
Aws Route53 Command: List Hosted Zones
aws route53 list-hosted-zones aws-route53 Operations
Aws Route53 Command: Delete Hosted Zone
aws route53 delete-hosted-zone --id <zone_id> aws-route53 Operations
Aws Route53 Command: List Resource Record Sets
aws route53 list-resource-record-sets --hosted-zone-id <zone_id> aws-route53 Operations
Aws Route53 Command: Create Hosted Zone
aws route53 create-hosted-zone --name <name> --caller-reference <request_identifier> aws-route53 Operations
Aws Route53 Command: Test Dns Answer
aws route53 test-dns-answer --hosted-zone-id <zone_id> --record-name <name> --record-type <type> Aws Quicksight
Verified for current stable LTS aws-quicksight Operations
Aws Quicksight Command: List Users
aws quicksight list-users --aws-account-id <aws_account_id> --namespace default aws-quicksight Operations
Aws Quicksight Command: List Dashboards
aws quicksight list-dashboards --aws-account-id <aws_account_id> aws-quicksight Operations
Aws Quicksight Command: List Datasets
aws quicksight list-data-sets --aws-account-id <aws_account_id> aws-quicksight Operations
Aws Quicksight Command: List Groups
aws quicksight list-groups --aws-account-id <aws_account_id> --namespace default aws-quicksight Operations
Aws Quicksight Command: Describe Data Set
aws quicksight describe-data-set --aws-account-id <aws_account_id> --data-set-id <data_set_id> aws-quicksight Operations
Aws Quicksight Command: Describe Data Set Permissions
aws quicksight describe-data-set-permissions --aws-account-id <aws_account_id> --data-set-id <data_set_id> Aws S3 Cp
Verified for current stable LTS aws-s3-cp Operations
Aws S3 Cp Command: Copy Local To S3
aws s3 cp <path/to/file> s3://<bucket_name>/<path/to/remote_file> aws-s3-cp Operations
Aws S3 Cp Command: Copy S3 To Another Bucket Keep Name
aws s3 cp s3://<bucket_name1>/<path/to/file> s3://<bucket_name2> aws-s3-cp Operations
Aws S3 Cp Command: Display Help
aws s3 cp help aws-s3-cp HTTP
Aws S3 Cp Command: Copy S3 To Another Bucket
aws s3 cp s3://<bucket_name1>/<path/to/file> s3://<bucket_name2>/<path/to/target> aws-s3-cp Operations
Aws S3 Cp Command: Copy S3 To Local Recursive
aws s3 cp s3://<bucket_name> . --recursive Aws Rds
Verified for current stable LTS aws-rds Archive
Aws Rds Command: Start Db Instance
aws rds start-db-instance --db-instance-identifier <instance_identifier> aws-rds Operations
Aws Rds Command: Change Db Instance Identifier
aws rds modify-db-instance --db-instance-identifier <old_instance_identifier> --new-db-instance-identifier <new_instance_identifier> aws-rds Operations
Aws Rds Command: Reboot Db Instance
aws rds reboot-db-instance --db-instance-identifier <instance_identifier> aws-rds Operations
Aws Rds Command: Help
aws rds <subcommand> help aws-rds Operations
Aws Rds Command: Stop Db Instance
aws rds stop-db-instance --db-instance-identifier <instance_identifier> aws-rds Operations
Aws Rds Command: Modify Db Instance
aws rds modify-db-instance --db-instance-identifier <instance_identifier> <parameters> --apply-immediately aws-rds Operations
Aws Rds Command: Apply Pending Maintenance Action
aws rds apply-pending-maintenance-action --resource-identifier <database_arn> --apply-action <system-update> --opt-in-type <immediate> aws-rds Operations
Aws Rds Command: Delete Db Instance
aws rds delete-db-instance --db-instance-identifier <instance_identifier> --final-db-snapshot-identifier <snapshot_identifier> --delete-automated-backups Aws S3 Rb
Verified for current stable LTS aws-s3-rb Operations
Aws S3 Rb Command: Delete Empty Bucket
aws s3 rb s3://<bucket_name> aws-s3-rb Operations
Aws S3 Rb Command: Force Delete Bucket
aws s3 rb s3://<bucket_name> --force Aws S3 Mb
Verified for current stable LTS aws-s3-mb Operations
Aws S3 Mb Command: Create Bucket
aws s3 mb s3://<bucket_name> aws-s3-mb Operations
Aws S3 Mb Command: Display Help
aws s3 mb help aws-s3-mb Operations
Aws S3 Mb Command: Create Bucket In Region
aws s3 mb s3://<bucket_name> --region <region> Aws S3 Presign
Verified for current stable LTS aws-s3-presign Operations
Aws S3 Presign Command: Display Help
aws s3 presign help aws-s3-presign Operations
Aws S3 Presign Command: Generate Presigned Url
aws s3 presign s3://<bucket_name>/<path/to/file> aws-s3-presign Operations
Aws S3 Presign Command: Generate Presigned Url With Expiration
aws s3 presign s3://<bucket_name>/<path/to/file> --expires-in <duration_in_seconds> Aws S3 Mv
Verified for current stable LTS aws-s3-mv HTTP
Aws S3 Mv Command: Move S3 To Another Bucket
aws s3 mv s3://<bucket_name1>/<path/to/file> s3://<bucket_name2>/<path/to/target> aws-s3-mv Operations
Aws S3 Mv Command: Display Help
aws s3 mv help aws-s3-mv Operations
Aws S3 Mv Command: Move Local To S3
aws s3 mv <path/to/local_file> s3://<bucket_name>/<path/to/remote_file> aws-s3-mv Operations
Aws S3 Mv Command: Move S3 To Another Bucket Keep Original Name
aws s3 mv s3://<bucket_name1>/<path/to/file> s3://<bucket_name2> Aws S3 Rm
Verified for current stable LTS aws-s3-rm Operations
Aws S3 Rm Command: Remove All Objects From Bucket
aws s3 rm s3://<bucket_name> --recursive aws-s3-rm Operations
Aws S3 Rm Command: Display Help
aws s3 rm help aws-s3-rm Operations
Aws S3 Rm Command: Delete Specific Object
aws s3 rm s3://<bucket_name>/<path/to/file> aws-s3-rm Operations
Aws S3 Rm Command: Preview Deletion
aws s3 rm s3://<bucket_name>/<path/to/file> --dryrun aws-s3-rm Operations
Aws S3 Rm Command: Delete From Access Point
aws s3 rm s3://arn:aws:s3:<region>:<account_id>:<access_point>/<access_point_name>/<object_key> Aws S3api
Verified for current stable LTS aws-s3api Operations
Aws S3api Command: Create Bucket
aws s3api create-bucket --bucket <bucket_name> --region <region> --create-bucket-configuration LocationConstraint=<region> aws-s3api Operations
Aws S3api Command: List Buckets
aws s3api list-buckets aws-s3api HTTP
Aws S3api Command: Get Object
aws s3api get-object --bucket <bucket_name> --key <object_key> <path/to/output_file> aws-s3api Operations
Aws S3api Command: Delete Bucket
aws s3api delete-bucket --bucket <bucket_name> aws-s3api Operations
Aws S3api Command: List Objects
aws s3api list-objects --bucket <bucket_name> --query '{{Contents[].{Key: Key, Size: Size}}}' aws-s3api Operations
Aws S3api Command: Put Object
aws s3api put-object --bucket <bucket_name> --key <object_key> --body <path/to/file> aws-s3api HTTP
Aws S3api Command: Put Bucket Policy
aws s3api put-bucket-policy --bucket <bucket_name> --policy file://<path/to/bucket_policy.json> aws-s3api HTTP
Aws S3api Command: Get Bucket Policy
aws s3api get-bucket-policy --bucket <bucket_name> --query Policy --output <json|table|text|yaml|yaml-stream> > <path/to/bucket_policy> Aws S3
Verified for current stable LTS aws-s3 Operations
Aws S3 Command: List Files
aws s3 ls <bucket_name> aws-s3 Operations
Aws S3 Command: Sync Local To Bucket
aws s3 sync <path/to/directory> s3://<bucket_name> aws-s3 Operations
Aws S3 Command: Preview Changes Only
aws s3 <any_command> --dryrun aws-s3 HTTP
Aws S3 Command: Sync Bucket To Local
aws s3 sync s3://<bucket_name> <path/to/target> aws-s3 Operations
Aws S3 Command: Sync With Exclusions
aws s3 sync <path/to/directory> s3://<bucket_name> --exclude <path/to/file> --exclude <path/to/directory>/* aws-s3 Operations
Aws S3 Command: Remove File From Bucket
aws s3 rm s3://<bucket>/<path/to/file> Aws S3 Sync
Verified for current stable LTS aws-s3-sync HTTP
Aws S3 Sync Command: Sync Buckets
aws s3 sync s3://<bucket_source_name>/<path/to/remote_location> s3://<bucket_target_name>/<path/to/remote_location> aws-s3-sync Operations
Aws S3 Sync Command: Sync To Bucket Advanced Options
aws s3 sync <path/to/local_directory> s3://<bucket_name>/<path/to/remote_location> --acl <private|public-read> --storage-class <STANDARD_IA|GLACIER> aws-s3-sync Operations
Aws S3 Sync Command: Display Help
aws s3 sync help aws-s3-sync Operations
Aws S3 Sync Command: Sync Local To Bucket
aws s3 sync <path/to/directory> s3://<bucket_name>/<path/to/remote_location> aws-s3-sync Operations
Aws S3 Sync Command: Sync Bucket To Local
aws s3 sync s3://<bucket_name>/<path/to/remote_location> <path/to/directory> aws-s3-sync Operations
Aws S3 Sync Command: Sync Local To Bucket Exclude
aws s3 sync <path/to/directory> s3://<bucket_name>/<path/to/remote_location> --exclude <path/to/file> --exclude <path/to/directory>/* aws-s3-sync HTTP
Aws S3 Sync Command: Sync Buckets With Delete
aws s3 sync s3://<bucket_source_name>/<path/to/remote_location> s3://<bucket_target_name>/<path/to/remote_location> --delete aws-s3-sync Operations
Aws S3 Sync Command: Sync Local To Bucket Skip Unchanged
aws s3 sync <path/to/directory> s3://<bucket_name>/<path/to/remote_location> --size-only Aws Secretsmanager
Verified for current stable LTS aws-secretsmanager Operations
Aws Secretsmanager Command: List Secrets
aws secretsmanager list-secrets aws-secretsmanager Operations
Aws Secretsmanager Command: Delete Secret
aws secretsmanager delete-secret --secret-id <name|arn> aws-secretsmanager Operations
Aws Secretsmanager Command: Describe Secret
aws secretsmanager describe-secret --secret-id <name|arn> aws-secretsmanager Operations
Aws Secretsmanager Command: Rotate Secret Auto
aws secretsmanager rotate-secret --secret-id <name|arn> --rotation-lambda-arn <arn_of_lambda_function> --rotation-rules AutomaticallyAfterDays=<30> aws-secretsmanager Operations
Aws Secretsmanager Command: List Secrets Query
aws secretsmanager list-secrets --query 'SecretList[*].{Name: Name, ARN: ARN}' aws-secretsmanager Search
Aws Secretsmanager Command: Create Secret
aws secretsmanager create-secret --name <name> --description "<secret_description>" --secret-string '<secret>' aws-secretsmanager Operations
Aws Secretsmanager Command: Delete Secret Force
aws secretsmanager delete-secret --secret-id <name|arn> --force-delete-without-recovery aws-secretsmanager HTTP
Aws Secretsmanager Command: Get Secret Value
aws secretsmanager get-secret-value --secret-id <name|arn> --version-stage <version_of_secret> aws-secretsmanager Operations
Aws Secretsmanager Command: Rotate Secret
aws secretsmanager rotate-secret --secret-id <name|arn> --rotation-lambda-arn <arn_of_lambda_function> Aws Sts
Verified for current stable LTS aws-sts HTTP
Aws Sts Command: Get Caller Identity
aws sts get-caller-identity aws-sts Operations
Aws Sts Command: Assume Role
aws sts assume-role --role-arn <aws_role_arn> Aws Sso
Verified for current stable LTS aws-sso HTTP
Aws Sso Command: Get Role Credentials
aws sso get-role-credentials --account-id <account> --role-name <role> --access-token <token> aws-sso Operations
Aws Sso Command: Login
aws sso login aws-sso Operations
Aws Sso Command: Logout
aws sso logout aws-sso Operations
Aws Sso Command: List Accounts
aws sso list-accounts aws-sso Operations
Aws Sso Command: List Account Roles
aws sso list-account-roles --account-id <account> --access-token <token> Aws Ses
Verified for current stable LTS aws-ses Operations
Aws Ses Command: Describe Receipt Rule
aws ses describe-receipt-rule --rule-set-name <rule_set_name> --rule-name <rule_name> --generate-cli-skeleton aws-ses Operations
Aws Ses Command: Delete Receipt Rule Set
aws ses delete-receipt-rule-set --rule-set-name <rule_set_name> --generate-cli-skeleton aws-ses Operations
Aws Ses Command: Display Help
aws ses <subcommand> help aws-ses Operations
Aws Ses Command: Create Receipt Rule Set
aws ses create-receipt-rule-set --rule-set-name <rule_set_name> --generate-cli-skeleton aws-ses Operations
Aws Ses Command: Describe Active Receipt Rule Set
aws ses describe-active-receipt-rule-set --generate-cli-skeleton aws-ses Archive
Aws Ses Command: List Receipt Rule Sets
aws ses list-receipt-rule-sets --starting-token <token_string> --max-items <integer> --generate-cli-skeleton aws-ses Operations
Aws Ses Command: Delete Receipt Rule
aws ses delete-receipt-rule --rule-set-name <rule_set_name> --rule-name <rule_name> --generate-cli-skeleton aws-ses Operations
Aws Ses Command: Send Email
aws ses send-email --from <from_address> --destination "ToAddresses=<addresses>" --message "Subject={Data=<subject_text>,Charset=utf8},Body={Text={Data=<body_text>,Charset=utf8},Html={Data=<message_body_containing_html>,Charset=utf8}" Aws Sqs
Verified for current stable LTS aws-sqs Operations
Aws Sqs Command: List Queues
aws sqs list-queues aws-sqs HTTP
Aws Sqs Command: Send Message
aws sqs send-message --queue-url https://sqs.<region>.amazonaws.com/<queue_name> --message-body "<message_body>" --delay-seconds <delay> --message-attributes {file://path/to/attributes_file.json} aws-sqs HTTP
Aws Sqs Command: Delete Queue
aws sqs delete-queue --queue-url https://sqs.<region>.amazonaws.com/<queue_name> aws-sqs HTTP
Aws Sqs Command: Get Queue Url
aws sqs get-queue-url --queue-name <queue_name> aws-sqs HTTP
Aws Sqs Command: Create Queue
aws sqs create-queue --queue-name <queue_name> --attributes {file://path/to/attributes_file.json} aws-sqs HTTP
Aws Sqs Command: Delete Message
aws sqs delete-message --queue-url {https://queue_url} --receipt-handle <receipt_handle> aws-sqs HTTP
Aws Sqs Command: Purge Queue
aws sqs purge-queue --queue-url https://sqs.<region>.amazonaws.com/<queue_name> aws-sqs HTTP
Aws Sqs Command: Add Permission
aws sqs add-permission --queue-url https://sqs.<region>.amazonaws.com/<queue_name> --label <permission_name> --aws-account-ids <account_id> --actions SendMessage Aws Sns
Verified for current stable LTS aws-sns Operations
Aws Sns Command: List Objects
aws sns list-<origination-numbers|phone-numbers-opted-out|platform-applications|sms-sandbox-phone-numbers|subscriptions|topics> aws-sns Operations
Aws Sns Command: Subscribe Email
aws sns subscribe --topic-arn <topic_ARN> --protocol email --notification-endpoint <email> aws-sns Operations
Aws Sns Command: Unsubscribe
aws sns unsubscribe --subscription-arn <subscription_ARN> aws-sns Operations
Aws Sns Command: Tag Resource
aws sns tag-resource --resource-arn <topic_ARN> --tags <Key=tag1_key Key=tag2_key,Value=tag2_value ...> aws-sns Operations
Aws Sns Command: Create Topic
aws sns create-topic --name <name> aws-sns Operations
Aws Sns Command: Publish Message
aws sns publish {--topic-arn "arn:aws:sns:us-west-2:123456789012:topic-name"||--phone-number +1-555-555-0100} --message file://<path/to/file> aws-sns Operations
Aws Sns Command: Create Platform Endpoint
aws sns create-platform-endpoint --platform-application-arn <platform_application_ARN> --token <token> aws-sns HTTP
Aws Sns Command: Add Permission
aws sns add-permission --topic-arn <topic_ARN> --label <topic_label> --aws-account-id <account_id> --action-name <AddPermission|CreatePlatformApplication|DeleteEndpoint|GetDataProtectionPolicy|GetEndpointAttributes|Subscribe|...> Az Acr
Verified for current stable LTS az-acr Video
Az Acr Command: Push Image
docker push <registry_name>.azurecr.io/<image_name>:<tag> az-acr Containers
Az Acr Command: Create Registry
az acr create -n <registry_name> -g <resource_group> --sku <sku> az-acr Containers
Az Acr Command: Login Registry
az acr login -n <registry_name> az-acr Video
Az Acr Command: Tag Image
docker tag <image_name> <registry_name>.azurecr.io/<image_name>:<tag> az-acr Video
Az Acr Command: Pull Image
docker pull <registry_name>.azurecr.io/<image_name>:<tag> az-acr Video
Az Acr Command: Delete Image
az acr repository delete -n <registry_name> --repository <image_name>:<tag> az-acr Containers
Az Acr Command: Delete Registry
az acr delete -n <registry_name> -g <resource_group> -y az-acr Video
Az Acr Command: List Images
az acr repository list -n <registry_name> --output table Awslogs
Verified for current stable LTS awslogs HTTP
Awslogs Command: Get Logs Filter Pattern
awslogs get </aws/lambda/my_lambda_group> --filter-pattern '<ERROR>' awslogs HTTP
Awslogs Command: Watch Logs
awslogs get </var/log/syslog> ALL --watch awslogs Containers
Awslogs Command: List Log Groups
awslogs groups awslogs Containers
Awslogs Command: List Streams
awslogs streams </var/log/syslog> awslogs HTTP
Awslogs Command: Get Logs Time Range
awslogs get </var/log/syslog> -s '<2h ago>' -e '<1h ago>' Aws
Verified for current stable LTS aws Operations
Aws Command: Configure Wizard
aws configure wizard aws Operations
Aws Command: Configure Sso
aws configure sso aws HTTP
Aws Command: Get Caller Identity
aws sts get-caller-identity aws Operations
Aws Command: List Dynamodb Tables
aws dynamodb list-tables --region <us-east-1> --output yaml aws Operations
Aws Command: Create User Auto Prompt
aws iam create-user --cli-auto-prompt aws Operations
Aws Command: Dynamodb Wizard
aws dynamodb wizard <new_table> aws Operations
Aws Command: Generate Cli Skeleton
aws dynamodb update-table --generate-cli-skeleton aws Operations
Aws Command: Command Help
aws <command> help Axel
Verified for current stable LTS axel HTTP
Axel Command: Download Url To File
axel <url> axel HTTP
Axel Command: Download And Specify Output File
axel <url> -o <path/to/file> axel HTTP
Axel Command: Download With Specific Number Connections
axel -n <number> <url> axel Search
Axel Command: Use Specific Number Of Mirrors
axel -S<number> <url> axel HTTP
Axel Command: Limit Download Speed
axel -s <speed> <url> axel Operations
Axel Command: Use Ipv4 Protocol
axel -4 <url> axel Operations
Axel Command: Limit Output To Stdout And Custom User Agent
axel -q -U {{ Aws Workmail
Verified for current stable LTS aws-workmail Operations
Aws Workmail Command: List Organizations
aws workmail list-organizations aws-workmail Operations
Aws Workmail Command: List Users
aws workmail list-users --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Create User
aws workmail create-user --name <username> --display-name <name> --password <password> --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Register To Work Mail
aws workmail register-to-work-mail --entity-id <entity_id> --email <email> --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Create Group
aws workmail create-group --name <group_name> --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Associate Member To Group
aws workmail associate-member-to-group --group-id <group_id> --member-id <member_id> --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Deregister From Work Mail
aws workmail deregister-from-work-mail --entity-id <entity_id> --organization-id <organization_id> aws-workmail Operations
Aws Workmail Command: Delete User
aws workmail delete-user --user-id <user_id> --organization-id <organization_id> Az Advisor
Verified for current stable LTS az-advisor Operations
Az Advisor Command: List Configuration
az advisor configuration list az-advisor Operations
Az Advisor Command: Show Configuration
az advisor configuration show -g <resource_group> az-advisor Operations
Az Advisor Command: List Recommendations
az advisor recommendation list az-advisor Operations
Az Advisor Command: Enable Recommendations
az advisor recommendation enable -g <resource_group> az-advisor Operations
Az Advisor Command: Disable Recommendations
az advisor recommendation disable -g <resource_group> Az Account
Verified for current stable LTS az-account Operations
Az Account Command: List Subscriptions
az account list az-account Operations
Az Account Command: Set Subscription
az account set -s <subscription_id> az-account Operations
Az Account Command: List Locations
az account list-locations az-account HTTP
Az Account Command: Get Access Token
az account get-access-token --resource-type <ms-graph> az-account HTTP
Az Account Command: Show Subscription Details
az account show -o <json|tsv|table|yaml> Az Aks
Verified for current stable LTS az-aks Operations
Az Aks Command: List Aks Clusters
az aks list -g <resource_group> az-aks Operations
Az Aks Command: Create Aks Cluster
az aks create -g <resource_group> -n <name> -c <count> --node-vm-size <size> az-aks Operations
Az Aks Command: Delete Aks Cluster
az aks delete -g <resource_group> -n <name> az-aks HTTP
Az Aks Command: Get Aks Credentials
az aks get-credentials -g <resource_group> -n <name> az-aks HTTP
Az Aks Command: Get Aks Upgrades
az aks get-upgrades -g <resource_group> -n <name> Az Apim
Verified for current stable LTS az-apim Operations
Az Apim Command: List Api Management Services
az apim list -g <resource_group> az-apim Operations
Az Apim Command: Create Api Management Service
az apim create -n <name> -g <resource_group> --publisher-email <email> --publisher-name <name> az-apim Operations
Az Apim Command: Delete Api Management Service
az apim delete -n <name> -g <resource_group> az-apim Operations
Az Apim Command: Show Api Management Service Details
az apim show -n <name> -g <resource_group> az-apim Operations
Az Apim Command: Update Api Management Service
az apim update -n <name> -g <resource_group> Aws Vault
Verified for current stable LTS aws-vault Operations
Aws Vault Command: Login Console
aws-vault login <profile> aws-vault Operations
Aws Vault Command: Remove Credentials
aws-vault remove <profile> aws-vault Operations
Aws Vault Command: Add Credentials
aws-vault add <profile> aws-vault Operations
Aws Vault Command: Execute Command
aws-vault exec <profile> -- <aws s3 ls> aws-vault Operations
Aws Vault Command: List Profiles
aws-vault list aws-vault Operations
Aws Vault Command: Rotate Credentials
aws-vault rotate <profile> Az Config
Verified for current stable LTS az-config HTTP
Az Config Command: Print All Configurations
az config get az-config HTTP
Az Config Command: Print Configurations For Section
az config get <section_name> az-config Operations
Az Config Command: Set Configuration
az config set <configuration_name>=<value> az-config Operations
Az Config Command: Unset Configuration
az config unset <configuration_name> Az Bicep
Verified for current stable LTS az-bicep Operations
Az Bicep Command: Install
az bicep install az-bicep Operations
Az Bicep Command: Build
az bicep build -f <path/to/file.bicep> az-bicep HTTP
Az Bicep Command: Decompile
az bicep decompile -f <path/to/template_file.json> az-bicep Operations
Az Bicep Command: Upgrade
az bicep upgrade az-bicep Operations
Az Bicep Command: Version
az bicep version az-bicep Operations
Az Bicep Command: List Versions
az bicep list-versions az-bicep Operations
Az Bicep Command: Uninstall
az bicep uninstall Az Appconfig
Verified for current stable LTS az-appconfig Operations
Az Appconfig Command: Create App Configuration
az appconfig create -n <name> -g <group_name> -l <location> az-appconfig Operations
Az Appconfig Command: Delete App Configuration
az appconfig delete -g <rg_name> -n <appconfig_name> az-appconfig Operations
Az Appconfig Command: List App Configurations
az appconfig list az-appconfig Operations
Az Appconfig Command: List App Configurations Resource Group
az appconfig list -g <rg_name> az-appconfig Operations
Az Appconfig Command: Show App Configuration Properties
az appconfig show -n <appconfig_name> az-appconfig Operations
Az Appconfig Command: Update App Configuration
az appconfig update -g <rg_name> -n <appconfig_name> Az Container
Verified for current stable LTS az-container Video
Az Container Command: Create Container
az container create -g <resource_group> -n <name> --image <image_name> -os <windows|linux> --cpu <number_of_CPU_cores> --memory <memory_in_GB> az-container Containers
Az Container Command: Exec Command
az container exec -g <resource_group> -n <container_group_name> --exec-command "<command>" az-container Containers
Az Container Command: Examine Logs
az container logs -n <name> -g <resource_group> az-container HTTP
Az Container Command: Get Container Details
az container show -n <name> -g <resource_group> az-container Archive
Az Container Command: Start Containers
az container start -n <name> -g <resource_group> az-container Containers
Az Container Command: Stop Containers
az container stop -n <name> -g <resource_group> az-container Containers
Az Container Command: Delete Container Group
az container delete -n <name> -g <resource_group> Az Cognitiveservices
Verified for current stable LTS az-cognitiveservices Operations
Az Cognitiveservices Command: Create Account
az cognitiveservices account create -n <account_name> -g <resource_group> --kind <API_name> -l <location> --sku <sku_name> --yes az-cognitiveservices Operations
Az Cognitiveservices Command: List Usage
az cognitiveservices account list-usage -n <account_name> -g <resource_group> az-cognitiveservices Operations
Az Cognitiveservices Command: Create Deployment
az cognitiveservices account deployment create -n <account_name> -g <resource_group> --deployment-name <deploy_name> --model-name <model_name> --model-version "<model_version>" --model-format <format_name> az-cognitiveservices Operations
Az Cognitiveservices Command: Create Commitment Plan
az cognitiveservices account commitment-plan create -n <account_name> -g <resource_group> --commitment-plan-name "<plan_name>" --hosting-model "<hosting_model>" --plan-type "<plan_type>" --auto-renew <false|true> az-cognitiveservices Operations
Az Cognitiveservices Command: Delete Commitment Plan
az cognitiveservices account commitment-plan delete -g <resource_group> -n <account_name> --commitment-plan-name "<plan_name>" Az Feedback
Verified for current stable LTS az-feedback Operations
Az Feedback Command: Send Feedback
az feedback Az Devops
Verified for current stable LTS az-devops Operations
Az Devops Command: Login
az devops login --org <organization_url> az-devops Operations
Az Devops Command: Open Project
az devops project show -p <project_name> --open az-devops Operations
Az Devops Command: List Team Members
az devops team list-member -p <project_name> --team <team_name> az-devops Operations
Az Devops Command: Check Configuration
az devops configure -l az-devops Operations
Az Devops Command: Configure Cli
az devops configure -d project=<project_name> organization=<organization_url> Az Group
Verified for current stable LTS az-group Operations
Az Group Command: Create Resource Group
az group create -n <name> -l <location> az-group Operations
Az Group Command: Check Resource Group Existence
az group exists -n <name> az-group Operations
Az Group Command: Delete Resource Group
az group delete -n <name> az-group Operations
Az Group Command: Wait For Resource Group Condition
az group wait -n <name> --<created|deleted|exists|updated> Az Image
Verified for current stable LTS az-image Video
Az Image Command: List Images
az image list -g <resource_group> az-image Video
Az Image Command: Create Image
az image create -g <resource_group> -n <name> --os-type <windows|linux> --source <os_disk_source> az-image Video
Az Image Command: Delete Image
az image delete -n <name> -g <resource_group> az-image Video
Az Image Command: Show Image Details
az image show -n <name> -g <resource_group> az-image Video
Az Image Command: Update Image
az image update -n <name> -g <resource_group> --set <property=value> Az Disk
Verified for current stable LTS az-disk Operations
Az Disk Command: Create
az disk create -g <resource_group> -n <disk_name> -z <size_in_gb> az-disk Operations
Az Disk Command: List
az disk list -g <resource_group> az-disk Operations
Az Disk Command: Delete
az disk delete -g <resource_group> -n <disk_name> az-disk Operations
Az Disk Command: Grant Access
az disk grant-access -g <resource_group> -n <disk_name> --access <Read|Write> --duration-in-seconds <seconds> az-disk Operations
Az Disk Command: Update
az disk update -g <resource_group> -n <disk_name> -z <new_size_in_gb> Az Logout
Verified for current stable LTS az-logout Operations
Az Logout Command: Logout Active Account
az logout az-logout Operations
Az Logout Command: Logout Specific User
az logout --username <alias@example.com> Az Network
Verified for current stable LTS az-network Operations
Az Network Command: List Usages
az network list-usages az-network Operations
Az Network Command: List Virtual Networks
az network vnet list az-network Operations
Az Network Command: Create Virtual Network
az network vnet create --address-prefixes <10.0.0.0/16> -n <vnet> -g <group_name> --subnet-name <subnet> --subnet-prefixes <10.0.0.0/24> az-network Operations
Az Network Command: Enable Accelerated Networking
az network nic update --accelerated-networking true -n <nic> -g <resource_group> Az Lock
Verified for current stable LTS az-lock Operations
Az Lock Command: Create Read Only Subscription Lock
az lock create -n <lock_name> -t ReadOnly az-lock Operations
Az Lock Command: Create Read Only Resource Group Lock
az lock create -n <lock_name> -g <group_name> -t ReadOnly az-lock Operations
Az Lock Command: Delete Subscription Lock
az lock delete -n <lock_name> az-lock Operations
Az Lock Command: Delete Resource Group Lock
az lock delete -n <lock_name> -g <group_name> az-lock Operations
Az Lock Command: List Subscription Locks
az lock list az-lock Operations
Az Lock Command: Show Subscription Lock
az lock show -n <lock_name> Az Logicapp
Verified for current stable LTS az-logicapp Operations
Az Logicapp Command: Create Logic App
az logicapp create -n <name> -g <resource_group> -s <storage_account> az-logicapp Operations
Az Logicapp Command: Delete Logic App
az logicapp delete -n <name> -g <resource_group> az-logicapp Operations
Az Logicapp Command: List Logic Apps
az logicapp list -g <resource_group> az-logicapp Archive
Az Logicapp Command: Restart Logic App
az logicapp restart -n <name> -g <resource_group> az-logicapp Archive
Az Logicapp Command: Start Logic App
az logicapp start -n <name> -g <resource_group> az-logicapp Operations
Az Logicapp Command: Stop Logic App
az logicapp stop -n <name> -g <resource_group> Az Login
Verified for current stable LTS az-login Operations
Az Login Command: Interactive Login
az login az-login HTTP
Az Login Command: Service Principal Login With Client Secret
az login --service-principal -u {http://azure-cli-service-principal} -p <secret> -t <someone.onmicrosoft.com> az-login HTTP
Az Login Command: Service Principal Login With Client Certificate
az login --service-principal -u {http://azure-cli-service-principal} -p <path/to/cert.pem> -t <someone.onmicrosoft.com> az-login Operations
Az Login Command: Vm System Assigned Identity Login
az login -i az-login Operations
Az Login Command: Vm User Assigned Identity Login
az login -i -u /subscriptions/<subscription_id>/resourcegroups/<my_rg>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<my_id> Az Provider
Verified for current stable LTS az-provider Operations
Az Provider Command: Register Provider
az provider register -n <Microsoft.PolicyInsights> az-provider Operations
Az Provider Command: Unregister Provider
az provider unregister -n <Microsoft.Automation> az-provider Operations
Az Provider Command: List Providers
az provider list az-provider Operations
Az Provider Command: Show Provider
az provider show -n <Microsoft.Storage> az-provider Operations
Az Provider Command: List Resource Types
az provider list --query "[?namespace=='<Microsoft.Network>'].resourceTypes[].resourceType" Az Repos
Verified for current stable LTS az-repos Operations
Az Repos Command: List Repos
az repos list -p <project_name> az-repos Operations
Az Repos Command: Add Merge Policy
az repos policy merge-strategy create --repository-id <repository_id_in_repos_list> --branch <branch_name> --blocking --enabled --allow-no-fast-forward false --allow-rebase true --allow-rebase-merge true --allow-squash true az-repos Operations
Az Repos Command: Add Build Validation
az repos policy build create --repository-id <repository_id> --build-definition-id <build_pipeline_id> --branch main --blocking --enabled --queue-on-source-update-only true --display-name <name> --valid-duration <minutes> az-repos Operations
Az Repos Command: List Pull Requests
az repos pr list -p <project_name> -r <repository_name> --status active Az Redis
Verified for current stable LTS az-redis Operations
Az Redis Command: Create Redis Cache
az redis create --location <location> -n <name> -g <resource_group> --sku <Basic|Premium|Standard> --vm-size <c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5> az-redis Operations
Az Redis Command: Update Redis Cache
az redis update -n <name> -g <resource_group> --sku <Basic|Premium|Standard> --vm-size <c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5> az-redis Containers
Az Redis Command: Export Redis Cache
az redis export --container <container> --file-format <file-format> -n <name> --prefix <prefix> -g <resource_group> az-redis Operations
Az Redis Command: Delete Redis Cache
az redis delete -n <name> -g <resource_group> -y Az Pipelines
Verified for current stable LTS az-pipelines Operations
Az Pipelines Command: Create Pipeline
az pipelines create --org <organization_url> -p <project_name> --name <pipeline_name> --description <description> --repository <repository_name> --branch <branch_name> az-pipelines Operations
Az Pipelines Command: Delete Pipeline
az pipelines delete --org <organization_url> -p <project_name> --id <pipeline_id> az-pipelines Operations
Az Pipelines Command: List Pipelines
az pipelines list --org <organization_url> -p <project_name> az-pipelines Operations
Az Pipelines Command: Run Pipeline
az pipelines run --org <organization_url> -p <project_name> --name <pipeline_name> az-pipelines Operations
Az Pipelines Command: Show Pipeline
az pipelines show --org <organization_url> -p <project_name> --name <pipeline_name> az-pipelines Operations
Az Pipelines Command: Update Pipeline
az pipelines update --org <organization_url> -p <project_name> --name <pipeline_name> --new-name <pipeline_new_name> --new-folder-path <user1/production_pipelines> az-pipelines Operations
Az Pipelines Command: List Agents
az pipelines agent list --org <organization_url> --pool-id <agent_pool> Az Storage
Verified for current stable LTS az-storage Operations
Az Storage Command: List Access Keys
az storage account keys list -g <group_name> -n <account_name> az-storage Operations
Az Storage Command: Create Storage Account
az storage account create -g <group_name> -n <account_name> -l <location> --sku <account_sku> az-storage Operations
Az Storage Command: List Storage Accounts
az storage account list -g <group_name> az-storage Operations
Az Storage Command: Delete Storage Account
az storage account delete -g <group_name> -n <account_name> az-storage Operations
Az Storage Command: Update Storage Account Tls Version
az storage account update --min-tls-version <TLS1_0|TLS1_1|TLS1_2> -g <group_name> -n <account_name> Az Quantum
Verified for current stable LTS az-quantum Operations
Az Quantum Command: Create Workspace
az quantum workspace create -g <ResourceGroup> -l <Location> -w <Workspace> -a <MyStorageAccountName> az-quantum Operations
Az Quantum Command: List Workspaces
az quantum workspace list az-quantum Operations
Az Quantum Command: Set Default Workspace
az quantum workspace set -g <ResourceGroup> -w <Workspace> az-quantum HTTP
Az Quantum Command: Submit Job
az quantum job submit -g <ResourceGroup> -w <Workspace> -l <Location> -t <Id> --job-name <Job> --job-input-file <QirBitcode.bc> --job-input-format <qir.v1> az-quantum Operations
Az Quantum Command: List Jobs
az quantum job list -g <ResourceGroup> -l <Location> -w <Workspace> az-quantum HTTP
Az Quantum Command: Get Job Output
az quantum job output -g <ResourceGroup> -w <Workspace> --job-id <Job> az-quantum Operations
Az Quantum Command: List Provider Offerings
az quantum offerings list -l <Location> az-quantum HTTP
Az Quantum Command: Set Default Target
az quantum target set -t <Id> Az Serial Console
Verified for current stable LTS az-serial-console Operations
Az Serial Console Command: Connect To Serial Console
az serial-console connect -g <Resource_Group_Name> -n <Virtual_Machine_Name> az-serial-console Operations
Az Serial Console Command: Terminate Connection
<Ctrl ]> Az Sshkey
Verified for current stable LTS az-sshkey Operations
Az Sshkey Command: Create New Ssh Key
az sshkey create --name <name> -g <resource_group> az-sshkey Operations
Az Sshkey Command: Upload Existing Ssh Key
az sshkey create --name <name> -g <resource_group> --public-key "<@path/to/key.pub>" az-sshkey Operations
Az Sshkey Command: List Ssh Keys
az sshkey list az-sshkey Operations
Az Sshkey Command: Show Ssh Key Info
az sshkey show --name <name> -g <resource_group> Az Storage Container
Verified for current stable LTS az-storage-container Containers
Az Storage Container Command: Create Container
az storage container create --account-name <storage_account_name> -n <container_name> --public-access <access_level> --fail-on-exist az-storage-container HTTP
Az Storage Container Command: Generate Sas
az storage container generate-sas --account-name <storage_account_name> -n <container_name> --permissions <sas_permissions> --expiry <expiry_date> --https-only az-storage-container Containers
Az Storage Container Command: List Containers
az storage container list --account-name <storage_account_name> --prefix <filter_prefix> az-storage-container Containers
Az Storage Container Command: Delete Container
az storage container delete --account-name <storage_account_name> -n <container_name> --fail-not-exist Az Storage Account
Verified for current stable LTS az-storage-account Operations
Az Storage Account Command: Create Storage Account
az storage account create -n <storage_account_name> -g <azure_resource_group> --location <azure_location> --sku <storage_account_sku> az-storage-account Operations
Az Storage Account Command: Generate Sas
az storage account generate-sas --account-name <storage_account_name> -n <account_name> --permissions <sas_permissions> --expiry <expiry_date> --services <storage_services> --resource-types <resource_types> az-storage-account Operations
Az Storage Account Command: List Storage Accounts
az storage account list -g <azure_resource_group> az-storage-account Operations
Az Storage Account Command: Delete Storage Account
az storage account delete -n <storage_account_name> -g <azure_resource_group> Az Storage Blob
Verified for current stable LTS az-storage-blob HTTP
Az Storage Blob Command: Download Blob
az storage blob download --account-name <account_name> --account-key <account_key> -c <container_name> -n <blob_name> -f <path/to/file> az-storage-blob HTTP
Az Storage Blob Command: Download Blobs Batch
az storage blob download-batch --account-name <account_name> --account-key <account_key> -s <container_name> --pattern <filename_regex> -d <path/to/destination> az-storage-blob Containers
Az Storage Blob Command: Upload Blob
az storage blob upload --account-name <account_name> --account-key <account_key> -c <container_name> -n <blob_name> -f <path/to/file> az-storage-blob Containers
Az Storage Blob Command: Delete Blob
az storage blob delete --account-name <account_name> --account-key <account_key> -c <container_name> -n <blob_name> az-storage-blob HTTP
Az Storage Blob Command: Generate Sas For Blob
az storage blob generate-sas --account-name <account_name> --account-key <account_key> -c <container_name> -n <blob_name> --permissions <permission_set> --expiry {Y-m-d'T'H:M'Z'} --https-only Az Storage Table
Verified for current stable LTS az-storage-table Operations
Az Storage Table Command: Create Table
az storage table create --account-name <storage_account_name> -n <table_name> --fail-on-exist az-storage-table HTTP
Az Storage Table Command: Generate Sas
az storage table generate-sas --account-name <storage_account_name> -n <table_name> --permissions <sas_permissions> --expiry <expiry_date> --https-only az-storage-table Operations
Az Storage Table Command: List Tables
az storage table list --account-name <storage_account_name> az-storage-table Operations
Az Storage Table Command: Delete Table
az storage table delete --account-name <storage_account_name> -n <table_name> --fail-not-exist Az Storage Queue
Verified for current stable LTS az-storage-queue Operations
Az Storage Queue Command: Create Queue
az storage queue create --account-name <storage_account_name> -n <queue_name> --metadata <queue_metadata> az-storage-queue HTTP
Az Storage Queue Command: Generate Sas For Queue
az storage queue generate-sas --account-name <storage_account_name> -n <queue_name> --permissions <queue_permissions> --expiry <expiry_date> --https-only az-storage-queue Operations
Az Storage Queue Command: List Queues
az storage queue list --prefix <filter_prefix> --account-name <storage_account_name> az-storage-queue Operations
Az Storage Queue Command: Delete Queue
az storage queue delete --account-name <storage_account_name> -n <queue_name> --fail-not-exist Az Tag
Verified for current stable LTS az-tag Operations
Az Tag Command: Add Tag Value
az tag add-value -n <tag_name> --value <tag_value> az-tag Operations
Az Tag Command: Create Tag
az tag create -n <tag_name> az-tag Operations
Az Tag Command: Delete Tag
az tag delete -n <tag_name> az-tag Operations
Az Tag Command: List Tags
az tag list --resource-id /subscriptions/<subscription_id> az-tag Operations
Az Tag Command: Remove Tag Value
az tag remove-value -n <tag_name> --value <tag_value> Az Storage Entity
Verified for current stable LTS az-storage-entity Operations
Az Storage Entity Command: Insert Entity
az storage entity insert -e <space_separated_key_value_pairs> -t <table_name> --account-name <storage_account_name> --account-key <storage_account_key> az-storage-entity Operations
Az Storage Entity Command: Delete Entity
az storage entity delete --partition-key <partition_key> --row-key <row_key> -t <table_name> --account-name <storage_account_name> --account-key <storage_account_key> az-storage-entity Operations
Az Storage Entity Command: Merge Entity
az storage entity merge -e <space_separated_key_value_pairs> -t <table_name> --account-name <storage_account_name> --account-key <storage_account_key> az-storage-entity Operations
Az Storage Entity Command: Query Entities
az storage entity query --filter <query_filter> -t <table_name> --account-name <storage_account_name> --account-key <storage_account_key> az-storage-entity Operations
Az Storage Entity Command: Show Entity
az storage entity show --partition-key <partition_key> --row-key <row_key> -t <table_name> --account-name <storage_account_name> --account-key <storage_account_key> Az Upgrade
Verified for current stable LTS az-upgrade Operations
Az Upgrade Command: Upgrade Cli
az upgrade az-upgrade Operations
Az Upgrade Command: Upgrade Cli And Extensions
az upgrade --all az-upgrade Operations
Az Upgrade Command: Upgrade Cli And Extensions No Prompt
az upgrade --all --yes Az Version
Verified for current stable LTS az-version Operations
Az Version Command: Show Current Version
az version az-version HTTP
Az Version Command: Show Version With Format
az version -o <json|table|tsv> Az Term
Verified for current stable LTS az-term Operations
Az Term Command: Show
az term show --product "<product_identifier>" --plan "<plan_identifier>" --publisher "<publisher_identifier>" az-term Operations
Az Term Command: Accept
az term accept --product "<product_identifier>" --plan "<plan_identifier>" --publisher "<publisher_identifier>" Az Webapp
Verified for current stable LTS az-webapp Operations
Az Webapp Command: List Runtimes
az webapp list-runtimes -os <windows|linux> az-webapp Operations
Az Webapp Command: Create Web App
az webapp up -n <name> -l <location> -r <runtime> az-webapp Operations
Az Webapp Command: List Web Apps
az webapp list az-webapp Operations
Az Webapp Command: Delete Web App
az webapp delete -n <name> -g <resource_group> Az Vm
Verified for current stable LTS az-vm Operations
Az Vm Command: List Vms
az vm list --output table az-vm Video
Az Vm Command: Create Vm
az vm create -g <rg> -n <vm_name> --image <UbuntuLTS> --admin-user <azureuser> --generate-ssh-keys az-vm Operations
Az Vm Command: Stop Vm
az vm stop -g <rg> -n <vm_name> az-vm Operations
Az Vm Command: Deallocate Vm
az vm deallocate -g <rg> -n <vm_name> az-vm Archive
Az Vm Command: Start Vm
az vm start -g <rg> -n <vm_name> az-vm Archive
Az Vm Command: Restart Vm
az vm restart -g <rg> -n <vm_name> az-vm Video
Az Vm Command: List Vm Images
az vm image list Azure Cli
Verified for current stable LTS azure-cli Operations
Azure Cli Command: View Documentation
tldr az Az
Verified for current stable LTS az Operations
Az Command: Login
az login az Operations
Az Command: Manage Subscription
az account az Operations
Az Command: List Managed Disks
az disk list az Operations
Az Command: List Virtual Machines
az vm list az Operations
Az Command: Manage Kubernetes Services
az aks az Operations
Az Command: Manage Network Resources
az network az Operations
Az Command: Interactive Mode
az interactive az Operations
Az Command: Display Help
az --help B2
Verified for current stable LTS b2 Operations
B2 Command: Authorize Account
b2 authorize_account <key_id> b2 Operations
B2 Command: List Buckets
b2 list_buckets b2 Operations
B2 Command: Create Bucket
b2 create_bucket <bucket_name> <allPublic|allPrivate> b2 Operations
B2 Command: Upload File
b2 upload_file <bucket_name> <path/to/file> <folder_name> b2 Operations
B2 Command: Sync Directory
b2 sync <path/to/source_file> <bucket_name> b2 Operations
B2 Command: Copy File By Id
b2 copy-file-by-id <path/to/source_file_id> <destination_bucket_name> <path/to/b2_file> b2 Operations
B2 Command: List Files In Bucket
b2 ls <bucket_name> b2 Search
B2 Command: Remove Folder Or Pattern
b2 rm <path/to/folder|pattern> Azurite
Verified for current stable LTS azurite Operations
Azurite Command: Set Workspace
azurite -l <path/to/directory> azurite Operations
Azurite Command: Disable Access Log
azurite -s azurite Operations
Azurite Command: Enable Debug Log
azurite -d <path/to/debug.log> azurite Operations
Azurite Command: Set Blob Queue Table Host
azurite --blobHost <0.0.0.0> azurite Operations
Azurite Command: Set Blob Queue Table Port
azurite --blobPort <8888> Azcopy
Verified for current stable LTS azcopy Operations
Azcopy Command: Login
azcopy login azcopy HTTP
Azcopy Command: Copy File
azcopy c '<path/to/source_file>' 'https://<storage_account_name>.blob.core.windows.net/<container_name>/<blob_name>' azcopy HTTP
Azcopy Command: Copy Files With Extensions
azcopy c '<path/to/source_directory>' 'https://<storage_account_name>.blob.core.windows.net/<container_name>' --include-pattern '*.txt;*.jpg' azcopy HTTP
Azcopy Command: Copy Container Between Accounts
azcopy c 'https://<source_storage_account_name>.blob.core.windows.net/<container_name>' 'https://<destination_storage_account_name>.blob.core.windows.net/<container_name>' azcopy HTTP
Azcopy Command: Sync Directory
azcopy s '<path/to/source_directory>' 'https://<storage_account_name>.blob.core.windows.net/<container_name>' --delete-destination true azcopy Operations
Azcopy Command: Help
azcopy -h Bacon
Verified for current stable LTS bacon Operations
Bacon Command: Run
bacon bacon Operations
Bacon Command: Run Test
bacon test <path/to/directory> bacon Operations
Bacon Command: Check All
bacon check-all bacon Operations
Bacon Command: Run Specific Job
bacon <run|test|clippy|doc|...> bacon Operations
Bacon Command: List Jobs
bacon --list-jobs bacon Operations
Bacon Command: Initialize Config
bacon --init Babeld
Verified for current stable LTS babeld Archive
Babeld Command: Start Daemon
babeld -c <path/to/ports.conf> -c <path/to/filters.conf> -c <path/to/interfaces.conf> babeld Operations
Babeld Command: Daemonize
babeld -D babeld Operations
Babeld Command: Configuration Command
babeld -C '<redistribute metric 256>' babeld Operations
Babeld Command: Specify Interfaces
babeld <eth0> <eth1> <wlan0> B2sum
Verified for current stable LTS b2sum Operations
B2sum Command: Calculate Checksum
b2sum <path/to/file1 path/to/file2 ...> b2sum Operations
B2sum Command: Save Checksum To File
b2sum <path/to/file1 path/to/file2 ...> > <path/to/file>.b2 b2sum Operations
B2sum Command: Checksum From Stdin
<command> | b2sum b2sum Operations
B2sum Command: Verify Checksums
b2sum -c <path/to/file>.b2 b2sum Operations
B2sum Command: Quiet Missing Files
b2sum -c --quiet <path/to/file>.b2 b2sum Operations
B2sum Command: Quiet Ignore Missing Files
b2sum --ignore-missing -c --quiet <path/to/file>.b2 b2sum Operations
B2sum Command: Check Known Checksum
echo <known_blake2_checksum_of_the_file> <path/to/file> | b2sum -c Babel
Verified for current stable LTS babel Operations
Babel Command: Transpile File To Stdout
babel <path/to/file> babel Operations
Babel Command: Transpile File To Specific Output
babel <path/to/input_file> --out-file <path/to/output_file> babel Operations
Babel Command: Transpile File On Change
babel <path/to/input_file> --watch babel Operations
Babel Command: Transpile Directory
babel <path/to/input_directory> babel Operations
Babel Command: Ignore Files In Directory
babel <path/to/input_directory> --ignore <ignored_file1,ignored_file2,...> babel Operations
Babel Command: Transpile And Minify
babel <path/to/input_file> --minified babel Operations
Babel Command: Choose Presets For Output
babel <path/to/input_file> --presets <preset1,preset2,...> babel Operations
Babel Command: Display Help
babel --help B3sum
Verified for current stable LTS b3sum Operations
B3sum Command: Calculate Checksum
b3sum <path/to/file1 path/to/file2 ...> b3sum Operations
B3sum Command: Save Checksum
b3sum <path/to/file1 path/to/file2 ...> > <path/to/file.b3> b3sum Operations
B3sum Command: Checksum From Stdin
<command> | b3sum b3sum Operations
B3sum Command: Verify Checksum File
b3sum -c <path/to/file.b3> b3sum Operations
B3sum Command: Quiet Verify Checksum File
b3sum -c --quiet <path/to/file.b3> b3sum Operations
B3sum Command: Check Known Checksum
echo <known_blake3_checksum_of_the_file> <path/to/file> | b3sum -c Base32
Verified for current stable LTS base32 Operations
Base32 Command: Encode File
base32 <path/to/file> base32 Operations
Base32 Command: Wrap Encoded Output
base32 -w <0|76|...> <path/to/file> base32 Operations
Base32 Command: Decode File
base32 -d <path/to/file> base32 Operations
Base32 Command: Encode Stdin
<command> | base32 base32 Operations
Base32 Command: Decode Stdin
<command> | base32 -d Balena
Verified for current stable LTS balena Operations
Balena Command: Login
balena login balena Operations
Balena Command: Create Application
balena app create <app_name> balena Operations
Balena Command: List Applications
balena apps balena Operations
Balena Command: List Devices
balena devices balena Video
Balena Command: Flash Os Image
balena local flash <path/to/balenaos.img> --drive <drive_location> Bandwhich
Verified for current stable LTS bandwhich Operations
Bandwhich Command: Show Addresses
bandwhich -a bandwhich Operations
Bandwhich Command: Show Dns Queries
bandwhich -s bandwhich Operations
Bandwhich Command: Show Total Utilization
bandwhich -t bandwhich Operations
Bandwhich Command: Show Interface Utilization
bandwhich -i <eth0> bandwhich Operations
Bandwhich Command: Show Dns Queries With Server
bandwhich -s -d <dns_server_ip> Badblocks
Verified for current stable LTS badblocks Search
Badblocks Command: Search Non Destructive Read Only
sudo badblocks </dev/sdX> badblocks Search
Badblocks Command: Search Non Destructive Read Write
sudo badblocks -n </dev/sdX> badblocks Search
Badblocks Command: Search Destructive Write
sudo badblocks -w </dev/sdX> badblocks Search
Badblocks Command: Search Destructive Write Verbose
sudo badblocks -svw </dev/sdX> badblocks Operations
Badblocks Command: Output Found Blocks To File
sudo badblocks -o <path/to/file> -w </dev/sdX> badblocks Search
Badblocks Command: Search Destructive Write Improved Speed
sudo badblocks -w -b <4096> -c <65536> </dev/sdX> Bash It
Verified for current stable LTS bash-it Operations
Bash It Command: Update
bash-it update <stable|dev> bash-it Operations
Bash It Command: Reload
bash-it reload bash-it Archive
Bash It Command: Restart
bash-it restart bash-it Operations
Bash It Command: Doctor
bash-it doctor bash-it Operations
Bash It Command: Doctor Logging
bash-it doctor <errors|warnings|all> bash-it Search
Bash It Command: Search
bash-it search <alias|plugin|completion> bash-it Search
Bash It Command: Search Enable Disable
bash-it search --<enable|disable> <alias|plugin|completion> Base64
Verified for current stable LTS base64 Operations
Base64 Command: Encode File
base64 <path/to/file> base64 Operations
Base64 Command: Wrap Encoded Output
base64 -w <0|76|...> <path/to/file> base64 Operations
Base64 Command: Decode File
base64 -d <path/to/file> base64 Operations
Base64 Command: Encode Stdin
<command> | base64 base64 Operations
Base64 Command: Decode Stdin
<command> | base64 -d Bash
Verified for current stable LTS bash Archive
Bash Command: Start Interactive Shell
bash bash Archive
Bash Command: Start Interactive Shell No Configs
bash --norc bash Operations
Bash Command: Execute Commands
bash -c "<echo 'bash is executed'>" bash Operations
Bash Command: Execute Script
bash <path/to/script.sh> bash Operations
Bash Command: Execute Script With Tracing
bash -x <path/to/script.sh> bash Operations
Bash Command: Execute Script With Error Stop
bash -e <path/to/script.sh> bash Operations
Bash Command: Execute Commands From Stdin
<echo "echo 'bash is executed'"> | bash bash Archive
Bash Command: Start Restricted Shell
bash -r Basename
Verified for current stable LTS basename Operations
Basename Command: Show File Name From Path
basename <path/to/file> basename Operations
Basename Command: Show Rightmost Directory Name
basename <path/to/directory> basename Operations
Basename Command: Show File Name With Suffix Removed
basename <path/to/file> <suffix> Basenc
Verified for current stable LTS basenc Operations
Basenc Command: Encode File Base64
basenc --base64 <path/to/file> basenc Operations
Basenc Command: Decode File Base64
basenc -d --base64 <path/to/file> basenc Operations
Basenc Command: Encode Stdin Base32 Wrap
<command> | basenc --base32 -w 42 basenc Operations
Basenc Command: Encode Stdin Base32
<command> | basenc --base32 Batch
Verified for current stable LTS batch Operations
Batch Command: Execute Commands Later
batch batch Operations
Batch Command: Execute Command From Stdin
echo "<./make_db_backup.sh>" | batch Bashmarks
Verified for current stable LTS bashmarks Operations
Bashmarks Command: Add Bashmark Aliases
source /usr/share/bashmarks/bashmarks.sh bashmarks Operations
Bashmarks Command: List Bookmarks
l bashmarks Operations
Bashmarks Command: Save Bookmark
s <bookmark_name> bashmarks Operations
Bashmarks Command: Go To Bookmark
g <bookmark_name> bashmarks Operations
Bashmarks Command: Print Bookmark Contents
p <bookmark_name> bashmarks Operations
Bashmarks Command: Delete Bookmark
d <bookmark_name> Bastet
Verified for current stable LTS bastet Archive
Bastet Command: Start Game
bastet bastet Video
Bastet Command: Navigate Left
<ArrowLeft> bastet Video
Bastet Command: Navigate Right
<ArrowRight> bastet Operations
Bastet Command: Rotate Clockwise
<Space> bastet Operations
Bastet Command: Rotate Counterclockwise
<ArrowUp> bastet Operations
Bastet Command: Soft Drop
<ArrowDown> bastet Operations
Bastet Command: Hard Drop
<Enter> bastet Operations
Bastet Command: Pause Game
<p> bastet Operations
Bastet Command: Quit Game
<Ctrl c> Bats
Verified for current stable LTS bats Operations
Bats Command: Run Test Script With Tap Output
bats -t <path/to/test.bats> bats Operations
Bats Command: Count Test Cases Without Running
bats -c <path/to/test.bats> bats Operations
Bats Command: Run Tests Recursively
bats -r <path/to/directory> bats Operations
Bats Command: Output Results In Specific Format
bats -F <pretty|tap|tap13|junit> <path/to/test.bats> bats Operations
Bats Command: Add Timing Information To Tests
bats -T <path/to/test.bats> bats Operations
Bats Command: Run Tests In Parallel
bats -j <number> <path/to/test.bats> Bat
Verified for current stable LTS bat Operations
Bat Command: Pretty Print
bat <path/to/file1 path/to/file2 ...> bat HTTP
Bat Command: Concatenate
bat <path/to/file1 path/to/file2 ...> > <path/to/target_file> bat Operations
Bat Command: Remove Decorations
bat --style plain --pager never <path/to/file> bat Operations
Bat Command: Highlight Lines
bat -H {10|5:10|:10|10:|10:+5} <path/to/file> bat Operations
Bat Command: Show Non Printable
bat -A <path/to/file> bat Operations
Bat Command: Number Lines
bat -n <path/to/file> bat HTTP
Bat Command: Highlight Json
bat -l json <path/to/file.json> bat Operations
Bat Command: List Languages
bat -L Bazel
Verified for current stable LTS bazel HTTP
Bazel Command: Build
bazel build <target> bazel Operations
Bazel Command: Clean
bazel clean bazel Operations
Bazel Command: Shutdown
bazel shutdown bazel Operations
Bazel Command: Info
bazel info bazel Operations
Bazel Command: Help
bazel help bazel Operations
Bazel Command: Version
bazel version Bb
Verified for current stable LTS bb Operations
Bb Command: Evaluate Expression
bb -e "(+ 1 2 3)" bb Operations
Bb Command: Evaluate Script File
bb -f path/to/script.clj bb Search
Bb Command: Bind Input Sequence Lines
printf "first\nsecond" | bb -i "(map clojure.string/capitalize *input*)" bb Operations
Bb Command: Bind Input Sequence Edn
echo "{:key 'val}" | bb -I "(:key (first *input*))" Bcomps
Verified for current stable LTS bcomps Operations
Bcomps Command: Decompose Graphs
bcomps <path/to/input1.gv path/to/input2.gv ...> > <path/to/output.gv> bcomps Operations
Bcomps Command: Print Blocks Cutvertices
bcomps -v -s <path/to/input1.gv path/to/input2.gv ...> bcomps Operations
Bcomps Command: Write Blocks To Multiple Files
bcomps -x -o <path/to/output.gv> <path/to/input1.gv path/to/input2.gv ...> bcomps Operations
Bcomps Command: Display Help
bcomps -? Bc
Verified for current stable LTS bc Archive
Bc Command: Start Interactive Session
bc bc Archive
Bc Command: Start Interactive Session With Mathlib
bc -i -l bc Operations
Bc Command: Calculate Expression
echo '<5 / 3>' | bc bc Operations
Bc Command: Execute Script
bc <path/to/script.bc> bc Video
Bc Command: Calculate Expression With Scale
echo 'scale = <10>; <5 / 3>' | bc bc Operations
Bc Command: Calculate Math Function
echo '<s|c|a|l|e>(<1>)' | bc -l bc Operations
Bc Command: Execute Inline Factorial Script
echo "define factorial(n) { if (n <= 1) return 1; return n*factorial(n-1); }; factorial(<10>)" | bc Bcftools
Verified for current stable LTS bcftools Operations
Bcftools Command: View Bcf
bcftools view <path/to/input.bcf> -O v bcftools Archive
Bcftools Command: Sort Vcf
bcftools sort <path/to/input.vcf.gz> -O b -o <path/to/sorted.bcf> -W bcftools Archive
Bcftools Command: Concat Vcf
bcftools concat <path/to/chr1.vcf.gz path/to/chr2.vcf.gz ...> -O z bcftools Archive
Bcftools Command: Filter Variants
bcftools filter -e 'QUAL<20' -s LowQual <path/to/input.vcf.gz> bcftools Archive
Bcftools Command: Annotate Vcf
bcftools annotate -a <path/to/annotations.tsv.gz> -c CHROM,POS,REF,ALT,INFO/AF <path/to/input.vcf.gz> bcftools Archive
Bcftools Command: Intersection Vcf
bcftools isec <path/to/a.vcf.gz path/to/b.vcf.gz ...> --threads 4 -o <path/to/intersection.vcf> bcftools Archive
Bcftools Command: Merge Vcf
bcftools merge <path/to/cohort1.vcf.gz> <path/to/cohort2.vcf.gz> --no-index bcftools Archive
Bcftools Command: Index Vcf
bcftools index <path/to/input.vcf.gz> Beanstalkd
Verified for current stable LTS beanstalkd Archive
Beanstalkd Command: Start Server
beanstalkd beanstalkd Operations
Beanstalkd Command: Listen On Specific Port
beanstalkd -l <ip_address> -p <port_number> beanstalkd Operations
Beanstalkd Command: Persist Work Queues
beanstalkd -b <path/to/persistence_directory> beanstalkd Operations
Beanstalkd Command: Sync To Persistence Directory
beanstalkd -b <path/to/persistence_directory> -f <500> Bear
Verified for current stable LTS bear Operations
Bear Command: Generate Compilation Database
bear -- <make> bear HTTP
Bear Command: Generate Compilation Database With Custom Output
bear --output <path/to/compile_commands.json> -- <make> bear Operations
Bear Command: Append To Existing Database
bear --append -- <make> bear Operations
Bear Command: Run In Verbose Mode
bear --verbose -- <make> bear Operations
Bear Command: Force Preload Method
bear --force-preload -- <make> Bedtools
Verified for current stable LTS bedtools Operations
Bedtools Command: Intersect Files Strand
bedtools intersect -a <path/to/file_A> -b <path/to/file_B1 path/to/file_B2 ...> -s > <path/to/output_file> bedtools Operations
Bedtools Command: Intersect Left Outer Join
bedtools intersect -a <path/to/file1> -b <path/to/file2> -loj > <path/to/output_file> bedtools Operations
Bedtools Command: Intersect Pre Sorted Files
bedtools intersect -a <path/to/file1> -b <path/to/file2> -sorted > <path/to/output_file> bedtools Operations
Bedtools Command: Group By Columns And Sum
bedtools groupby -i <path/to/file> -c 1-3,5 -g 6 -o sum bedtools Operations
Bedtools Command: Convert Bam To Bed
bedtools bamtobed -i <path/to/file.bam> > <path/to/file.bed> bedtools Operations
Bedtools Command: Find Closest Features
bedtools closest -a <path/to/file1.bed> -b <path/to/file2.bed> -d Bd
Verified for current stable LTS bd Operations
Bd Command: Initialize Project Database
bd init bd Operations
Bd Command: Create New Issue
bd create <issue_title> -d <description> -p <1> -t <bug|feature|task|epic|chore> bd Operations
Bd Command: List All Issues
bd list bd Operations
Bd Command: Show Ready Issues
bd ready bd Operations
Bd Command: Display Issue Details
bd show <issue_id> bd Operations
Bd Command: Update Issue Status
bd update <issue_id> -s <open|in_progress|blocked|closed> bd Operations
Bd Command: Sync Changes
bd sync bd Operations
Bd Command: Display Help
bd -h Bdfr
Verified for current stable LTS bdfr HTTP
Bdfr Command: Download Link
bdfr download <path/to/output_directory> -l <post_url> bdfr HTTP
Bdfr Command: Download User
bdfr download <path/to/output_directory> -u <reddit_user> --submitted bdfr Archive
Bdfr Command: Archive Subreddit
bdfr archive <path/to/output_directory> -s '<Python, all, mindustry>' -L 10 bdfr HTTP
Bdfr Command: Download Sorted Subreddit
bdfr download <path/to/output_directory> -s Python -S top -t all -L 10 bdfr Video
Bdfr Command: Clone Subreddit
bdfr clone <path/to/output_directory> -s Python --skip mp4 --skip gif --make-hard-links bdfr HTTP
Bdfr Command: Download Saved Posts
bdfr download <path/to/output_directory> -u me --saved --authenticate --file-scheme '{{ {POSTID}_{TITLE}_{UPVOTES} }}' --no-dupes --search-existing Bfg
Verified for current stable LTS bfg Operations
Bfg Command: Delete Files
bfg --delete-files <file_with_sensitive_data> bfg Operations
Bfg Command: Replace Text
bfg --replace-text <path/to/file.txt> Berks
Verified for current stable LTS berks Operations
Berks Command: Install
berks install berks Operations
Berks Command: Update
berks update <cookbook> berks Operations
Berks Command: Upload
berks upload <cookbook> berks Operations
Berks Command: Contingent
berks contingent <cookbook> Behat
Verified for current stable LTS behat Operations
Behat Command: Initialize Project
behat --init behat Operations
Behat Command: Run All Tests
behat behat Operations
Behat Command: Run Suite Tests
behat --suite <suite_name> behat Operations
Behat Command: Run Tests With Formatter
behat --format <pretty|progress> behat Operations
Behat Command: Run Tests Output To File
behat --out <path/to/file> behat Operations
Behat Command: List Definitions
behat --definitions Betty
Verified for current stable LTS betty Operations
Betty Command: Ask Time
betty <what time is it> betty HTTP
Betty Command: Download File
betty download {https://example.com/file.ext} to <path/to/output_file.ext> betty Operations
Betty Command: Compress File
betty <zip> <path/to/file_or_directory> betty Archive
Betty Command: Extract Archive
betty <unzip> <archive.tar.gz> betty Archive
Betty Command: Extract Archive To Directory
betty unarchive <archive.tar.gz> to <path/to/directory> betty Operations
Betty Command: Play Spotify
betty play <Spotify> betty Operations
Betty Command: Go Crazy
betty go crazy betty Operations
Betty Command: Display Version
betty version Bfs
Verified for current stable LTS bfs Operations
Bfs Command: Find Files By Extension
bfs <path/to/directory> -name '<*.ext>' bfs Search
Bfs Command: Find Files Matching Multiple Patterns
bfs <path/to/directory> -path '<**/path/**/*.ext>' -or -name '<*pattern*>' bfs Operations
Bfs Command: Find Directories Case Insensitive
bfs <path/to/directory> -type d -iname '<*lib*>' bfs Operations
Bfs Command: Find Files Excluding Paths
bfs <path/to/directory> -name '<*.py>' -not -path '<*/site-packages/*>' bfs Operations
Bfs Command: Find Files By Size Range
bfs <path/to/directory> -maxdepth 1 -size <+500k> -size <-10M> bfs Operations
Bfs Command: Run Command For Each File
bfs <path/to/directory> -name '<*.ext>' -exec <wc -l> {} \; bfs Archive
Bfs Command: Find Recently Modified Files
bfs <path/to/directory> -daystart -mtime <-1> -exec <tar -cvf archive.tar> {} \+ bfs Operations
Bfs Command: Find And Delete Empty Files Or Directories
bfs <path/to/directory> -type <f|d> -empty -delete -print Bg
Verified for current stable LTS bg Operations
Bg Command: Resume Recent Job
bg bg Operations
Bg Command: Resume Specific Job
bg %<job_number> Bind
Verified for current stable LTS bind Operations
Bind Command: List Bound Commands
bind {-p|-P} bind Operations
Bind Command: Query Command Hotkey
bind -q {command} bind Operations
Bind Command: Bind Key
bind -x '"{key_sequence}":{command}' bind Operations
Bind Command: List User Defined Bindings
bind -X bind Operations
Bind Command: Display Help
help bind Biber
Verified for current stable LTS biber Operations
Biber Command: Generate Bibliography Data Using Bcf
biber <path/to/file.bcf> biber Operations
Biber Command: Generate Bibliography Data Using Config File
biber <path/to/file.bcf> -g <path/to/config_file> biber Operations
Biber Command: Enable Debugging
biber <path/to/file.bcf> -D Bgpgrep
Verified for current stable LTS bgpgrep Search
Bgpgrep Command: List All Routes
bgpgrep <master6.mrt> bgpgrep Search
Bgpgrep Command: List Routes From Peer As
bgpgrep <master4.mrt> -peer <64498> bgpgrep Search
Bgpgrep Command: List Routes From Peer Ip
bgpgrep <master4.mrt.bz2> -peer {2001:db8:dead:cafe:acd::19e} bgpgrep Search
Bgpgrep Command: List Routes By Aspath
bgpgrep <master6.mrt.bz2> -aspath '<64498 64510>' bgpgrep Search
Bgpgrep Command: List Routes To Address
bgpgrep <master6.mrt.bz2> -supernet '{2001:db8:dead:cafe:aef::5}' bgpgrep Search
Bgpgrep Command: List Routes By Communities
bgpgrep <master4.mrt> -communities \('<64497>:*'\) Biff
Verified for current stable LTS biff Operations
Biff Command: Print Current Time
biff time fmt -f rfc3339 now biff Operations
Biff Command: Print Multiple Relative Times
biff time fmt -f '%c' now -1d 'next sat' 'last monday' '9pm last mon' biff Operations
Biff Command: Print Current Time In Time Zone
biff time in Asia/Bangkok now | biff time round -i 15 -s minute biff Operations
Biff Command: Convert Time Between Time Zones
TZ='Japan' biff time in America/New_York 02:30 biff Operations
Biff Command: Print Relative Time
biff time add <-1d|1d|1w|-1m|1y|...> now biff Operations
Biff Command: Add Complex Duration
biff time add '1 week, 12 hours ago' now biff Operations
Biff Command: Find Duration Since Date
biff span since 2025-01-20T12:00 -l year biff Operations
Biff Command: Reformat Log Timestamps
biff tag lines /tmp/access.log | biff time in system | biff time fmt -f '%c' | head -n 3 | biff untag -s Bird
Verified for current stable LTS bird Archive
Bird Command: Start Bird With Configuration File
bird -c <path/to/bird.conf> bird Archive
Bird Command: Start Bird As Specific User And Group
bird -u <username> -g <group> Bioradtopgm
Verified for current stable LTS bioradtopgm Video
Bioradtopgm Command: Read Biorad Image
bioradtopgm -<n> <path/to/file.pic> > <path/to/file.pgm> bioradtopgm Video
Bioradtopgm Command: Count Images
bioradtopgm <path/to/file.pic> bioradtopgm Operations
Bioradtopgm Command: Display Version
bioradtopgm -v Bindkey
Verified for current stable LTS bindkey Operations
Bindkey Command: List Hotkeys
bindkey bindkey Operations
Bindkey Command: Bind Hotkey Command
bindkey "<^k>" <kill-line> bindkey Operations
Bindkey Command: Bind Hotkey Sequence
bindkey -s '^o' 'cd ..\n' bindkey Operations
Bindkey Command: List Keymaps
bindkey -l bindkey Operations
Bindkey Command: List Hotkeys Keymap
bindkey -M <main> bindkey Operations
Bindkey Command: Enable Vi Mode
bindkey -v bindkey Operations
Bindkey Command: Enable Emacs Mode
bindkey -e bindkey Search
Bindkey Command: Check Active Mode
bindkey -lL main | grep -Eo 'viins|emacs' Binwalk
Verified for current stable LTS binwalk Operations
Binwalk Command: Scan Binary
binwalk <path/to/binary> binwalk Archive
Binwalk Command: Extract Files
binwalk -e -C <output_directory> <path/to/binary> binwalk Archive
Binwalk Command: Recursively Extract Files
binwalk -e -M -d <2> <path/to/binary> binwalk Video
Binwalk Command: Extract With Signature
binwalk -D '{png image:png}' <path/to/binary> binwalk Operations
Binwalk Command: Analyze Entropy
binwalk -E -J <path/to/binary> binwalk Operations
Binwalk Command: Combine Analysis
binwalk -E -B -A <path/to/binary> Bing Rewards
Verified for current stable LTS bing-rewards Search
Bing Rewards Command: Complete Searches
bing-rewards bing-rewards Search
Bing Rewards Command: Run Mobile Searches
bing-rewards -m -c 10 bing-rewards Search
Bing Rewards Command: Complete Searches With Profile
bing-rewards --profile "Profile 1" bing-rewards Search
Bing Rewards Command: Run Sequential Searches
bing-rewards --profile "Default" "Profile 1" "Profile 2" bing-rewards Operations
Bing Rewards Command: Display Help
bing-rewards -h Bk
Verified for current stable LTS bk Operations
Bk Command: Configure Api Token And Organization
bk configure bk Operations
Bk Command: Select Organization
bk use <organization_slug> bk Operations
Bk Command: Initialize Pipeline Yaml
bk init bk Operations
Bk Command: List Pipelines
bk pipeline list bk Operations
Bk Command: Trigger Build
bk build create <pipeline_slug> bk Operations
Bk Command: View Build Status
bk build view <build_number> bk Operations
Bk Command: List Agents
bk agent list bk Operations
Bk Command: Display Help
bk -h Bison
Verified for current stable LTS bison Operations
Bison Command: Compile Definition File
bison <path/to/file.y> bison Operations
Bison Command: Compile Debug Mode
bison -t <path/to/file.y> bison Operations
Bison Command: Specify Output Filename
bison -o <path/to/output.c> <path/to/file.y> bison Operations
Bison Command: Be Verbose
bison -v Bitcoind
Verified for current stable LTS bitcoind Archive
Bitcoind Command: Start Daemon Foreground
bitcoind bitcoind Archive
Bitcoind Command: Start Daemon Background
bitcoind -daemon bitcoind Archive
Bitcoind Command: Start Daemon Specific Network
bitcoind -chain=<main|test|signet|regtest> bitcoind Archive
Bitcoind Command: Start Daemon Custom Config
bitcoind -conf=<path/to/bitcoin.conf> -datadir=<path/to/directory> Bitcoin Cli
Verified for current stable LTS bitcoin-cli Operations
Bitcoin Cli Command: Send To Address
bitcoin-cli sendtoaddress "<address>" <amount> bitcoin-cli Operations
Bitcoin Cli Command: Generate Blocks
bitcoin-cli generate <num_blocks> bitcoin-cli HTTP
Bitcoin Cli Command: Get Wallet Info
bitcoin-cli getwalletinfo bitcoin-cli Operations
Bitcoin Cli Command: List Unspent
bitcoin-cli listunspent bitcoin-cli Operations
Bitcoin Cli Command: Dump Wallet
bitcoin-cli dumpwallet "<path/to/file>" bitcoin-cli HTTP
Bitcoin Cli Command: Get Blockchain Info
bitcoin-cli getblockchaininfo bitcoin-cli HTTP
Bitcoin Cli Command: Get Network Info
bitcoin-cli getnetworkinfo bitcoin-cli Operations
Bitcoin Cli Command: Stop Daemon
bitcoin-cli stop Birdc
Verified for current stable LTS birdc Operations
Birdc Command: Open Console
birdc birdc Operations
Birdc Command: Reload Configuration
birdc configure birdc Operations
Birdc Command: Show Status
birdc show status birdc Operations
Birdc Command: Show Protocols
birdc show protocols birdc Operations
Birdc Command: Show Protocol Details
birdc show protocols <upstream1> all birdc Operations
Birdc Command: Show Routes By As
birdc "show route where bgp_path ~ [<4242120045>]" birdc Operations
Birdc Command: Show Best Routes
birdc show route primary birdc Operations
Birdc Command: Show Routes By Prefix
birdc show route for {fd00:/8} all Aws History
Verified for current stable LTS aws-history Operations
Aws History Command: List Commands History
aws history list aws-history Operations
Aws History Command: Show Command Events
aws history show <command_id> Aws S3 Website
Verified for current stable LTS aws-s3-website Operations
Aws S3 Website Command: Configure Website
aws s3 website {s3://bucket-name} --index-document <index.html> aws-s3-website Operations
Aws S3 Website Command: Configure Error Page
aws s3 website {s3://bucket-name} --index-document <index.html> --error-document <error.html>