Search & Find commands

找到 256 条

Search and filters

472 commands

a2enconf

Enable Apache2 configuration files

sudo a2enconf [configuration_file]
Details

a2ensite

Enable Apache2 virtual host sites

sudo a2ensite [virtual_host]
Details

abbr

fish shell abbreviation manager

abbr --add [abbreviation_name] [command] [arguments]
Details

acountry

IP address geolocation lookup via DNS

acountry [example.com]
Details

ag

Search code fast like ack but faster

ag [pattern]
Details

airtop

Live 802.11 Wi-Fi RF dashboard in the terminal using eBPF (htop for the airwaves)

airtop
Details

alembic

Manage SQLAlchemy database migrations

alembic init [alembic]
Details

alex

Catch insensitive, inconsiderate writing in text.

alex [file.md]
Details

amass

Attack surface mapping and asset discovery

amass enum -passive -d [example.com]
Details

anacron

Run periodic jobs on systems not running continuously

sudo anacron -n
Details

ani-cli

Search and stream anime from the terminal

ani-cli [anime_name]
Details

apktool

Reverse engineer Android APK files

apktool d [app.apk]
Details

appres

Display X application resource settings

appres [XTerm]
Details

apptainer-exec

Execute a command within an Apptainer container.

apptainer exec [container.sif] [command]
Details

apptainer-run

Execute the default runscript of a container.

apptainer run [container.sif]
Details

apropos

Search manual page descriptions by keyword

apropos [keyword]
Details

apt-config

Query and display APT configuration settings.

apt-config dump
Details

aptdcon

command-line client for the aptdaemon package management service

aptdcon --install "[package1 package2]"
Details

arc

Create and extract ARC format archives

arc a [archive.arc] [files]
Details

arch-wiki

Search the Arch Linux Wiki from the terminal

arch-wiki [search_term]
Details

Directory listing

394 commands

agy

Google Antigravity IDE launcher and command-line client

agy .
Details

aim

Command-line download/upload tool with resume

aim [https://domain.com/file.tar.gz] .
Details

amrecover

Interactively browse and restore Amanda backups

amrecover [config_name]
Details

angular

CLI for building Angular web applications

ng new [project-name]
Details

aoss

Run OSS applications using ALSA emulation

aoss [application]
Details

artisan

Laravel's command-line interface for PHP development tasks.

php artisan list
Details

ast-grep

Structural code search and rewrite using AST patterns

ast-grep --pattern 'console.log($ARG)'
Details

aur

Collection of scripts for managing AUR packages through a local repository.

aur search [keyword]
Details

auracle

Lightweight tool for querying the Arch User Repository.

auracle search '[regex]'
Details

austin-tui

Top-like TUI for the Austin Python frame stack sampler

austin-tui python3 [path/to/script.py]
Details

authselect

Configure system authentication sources via profiles

authselect list
Details

avr-gcc

GNU C compiler for AVR microcontrollers

avr-gcc -mmcu=[atmega328p] -o [output.elf] [source.c]
Details

avro-tools

Utilities for working with Apache Avro data files

avro-tools fromjson --schema-file [schema.avsc] [input.json] > [output.avro]
Details

aws-cloudtrail

Track and audit API activity across cloud services.

aws cloudtrail lookup-events --lookup-attributes AttributeKey=Username,AttributeValue=[user@example.com]
Details

aws-sts

Request temporary security credentials and verify identity.

aws sts get-caller-identity
Details

awsesh

AWS SSO session and credential manager with an interactive terminal UI

sesh
Details

batch

Execute commands when system load permits

batch
Details

beautifulsoup

Parse and extract data from HTML and XML documents

python3 -c "from bs4 import BeautifulSoup; import requests; print([a['href'] for a in BeautifulSoup(requests.get('[url]').text, 'html.parser').find_all('a', href=True)])"
Details

beeline

JDBC command-line client for Apache Hive

beeline -u jdbc:hive2://[localhost]:10000/[default]
Details

bgpgrep

Filter and search BGP routing data in MRT format

bgpgrep [path/to/rib.mrt.gz] -subnet [192.0.2.0/24]
Details

bkp

simple utility for creating backups of files and directories

bkp [path/to/file]
Details

blaise

Modern self-hosting Object Pascal compiler

blaise --source [Hello.pas] --output [Hello]
Details

boltctl

Manage Thunderbolt device authorization

boltctl
Details

bondai

AI agent framework with built-in tools

bondai
Details

bowtie2

Align sequencing reads to reference genomes.

bowtie2 -x [genome_index] -1 [reads_1.fq] -2 [reads_2.fq] -S [output.sam]
Details

bsdiff

Create and apply binary patches

bsdiff [oldfile] [newfile] [patch.bsdiff]
Details

bspwm

Tiling window manager based on binary space partitioning

bspwm -c [path/to/config]
Details

capabilities

Linux process privilege capabilities system

getcap [/path/to/binary]
Details

catchsegv

catch segmentation faults and print backtraces

catchsegv [./program]
Details

File inspection

307 commands

7za

standalone file archiver from the 7-Zip family

7za a [archive.7z] [files...]
Details

a2disconf

disable an Apache2 configuration file

sudo a2disconf [configuration_file]
Details

aa-enforce

Set AppArmor profiles to enforce mode

sudo aa-enforce [path/to/profile]
Details

aa-status

Report AppArmor profile and confinement status

sudo aa-status
Details

ack

grep-like source code search tool for programmers

ack [pattern]
Details

addr2line

Translate addresses to source file locations

addr2line -e [path/to/executable] [address]
Details

age-inspect

inspect age-encrypted files without decrypting them

age-inspect [secrets.age]
Details

aide

Detect file system changes for intrusion detection

sudo aide -i
Details

alt

Find alternate files for source and test switching

alt [path/to/file.rb]
Details

apisnip

TUI for trimming OpenAPI specifications

apisnip [input.yaml]
Details

atuin

Magical shell history with sync and search

atuin search -i [query]
Details

autoprefixer

Add vendor prefixes to CSS automatically

autoprefixer [input.css] -o [output.css]
Details

autopsy

Web-based digital forensics analysis interface

autopsy
Details

aws-codebuild

Run managed continuous integration builds.

aws codebuild start-build --project-name [my-project]
Details

aws-efs

Manage Amazon Elastic File System resources

aws efs describe-file-systems
Details

aws-s3-sync

Synchronize directories and S3 prefixes

aws s3 sync [./local-dir] s3://[bucket-name]/
Details

awstats

Generate advanced web server statistics

awstats -config [virtualhostname] -update
Details

axi-cache

Fast indexed package search for Debian

axi-cache search [keyword]
Details

az-resource

Manage Azure resources generically across all types

az resource list
Details

bfs

Breadth-first file search

bfs [/path]
Details

bibiman

TUI for managing BibLaTeX databases with Vim-like keybindings

bibiman [path/to/references.bib]
Details

bmptoppm

Convert BMP images to PPM format

bmptoppm [image.bmp] > [output.ppm]
Details

bookokrat

Terminal EPUB, PDF and DJVU book reader

bookokrat [path/to/book.epub]
Details

bulk_extractor

High-performance digital forensics data extraction tool

bulk_extractor -o [output_dir] [image.dd]
Details

bup

Git-based backup system with deduplication

bup init
Details

bzegrep

Search bzip2 files using extended regular expressions

bzegrep "[pattern]" [path/to/file.bz2]
Details

bzfgrep

Search bzip2 files for fixed string patterns

bzfgrep "[string]" [path/to/file.bz2]
Details

bzgrep

Search bzip2 compressed files for patterns

bzgrep ["pattern"] [file.bz2]
Details

File operations

96 commands

aa-unconfined

Find network-listening processes without AppArmor profiles

sudo aa-unconfined
Details

aimock

Mock infrastructure for AI application testing

npx aimock -p [4010] -f [./fixtures]
Details

arjun

Discover hidden HTTP parameters in web applications

arjun -u [https://example.com/page]
Details

avahi-autoipd

Acquire IPv4 link-local addresses automatically

avahi-autoipd [interface]
Details

avo

CLI for the Avo analytics tracking plan platform

avo init
Details

az-deployment

Deploy Azure resources using ARM templates and Bicep

az deployment group create --resource-group [rg_name] --template-file [template.json]
Details

az-logicapp

Manage Azure Logic Apps

az logicapp create --name [MyLogicApp] --resource-group [MyResourceGroup] --storage-account [MyStorageAccount] --plan [MyPlan]
Details

bore

Simple TCP tunnel for exposing local ports

bore local -t [remote_server_address] [local_port]
Details

ceph

distributed storage cluster management

ceph status
Details

cfv

Versatile checksum file verifier and creator

cfv
Details

cmake

cross-platform build system generator

cmake -B [build]
Details

codecrafters

hands-on software engineering challenges platform CLI

codecrafters login
Details

conda-info

Display information about the current conda installation

conda info
Details

conda

package and environment manager for Python and data science

conda create -n [myenv] [python=3.11]
Details

convmv

filename encoding converter

convmv -f latin1 -t utf-8 [path/to/files/*]
Details

dhcpd

ISC DHCP server daemon for IP address assignment

sudo dhcpd
Details

dictd

DICT protocol dictionary server daemon

dictd
Details

dillo

lightweight minimalist web browser

dillo
Details

dnf-system-upgrade

DNF plugin for offline Fedora major-version upgrades

sudo dnf system-upgrade download --releasever=[40]
Details

dnsrecon

comprehensive DNS reconnaissance tool

dnsrecon -d [example.com]
Details

docker-cp

copy files between containers and the host

docker cp [container]:[/path/to/file] [/local/path]
Details

docker-secret

manage sensitive data in Docker Swarm

docker secret create [name] [file]
Details

ds4

Command-line monitor for Sony DualShock 4 controllers on Linux

ds4
Details

exiqgrep

Exim mail queue search utility

exiqgrep -f '<[email@example.com]>'
Details

findomain

fast cross-platform subdomain enumerator

findomain -t [example.com]
Details

fkill

interactive cross-platform process killer

fkill
Details

gh-issue

manage repository issues and bug reports

gh issue list
Details

git-cp

Copy files preserving git history

git cp [source_file] [destination_file]
Details

Text processing

35 commands

aptitude

Advanced package management with dependency resolution

sudo aptitude update
Details

bbrew

CLI tool for searching Homebrew and Linuxbrew formulae and casks

bbrew search [query]
Details

clipse

Configurable TUI clipboard manager for Unix

clipse
Details

ddgr

DuckDuckGo search from the command line

ddgr [search terms]
Details

dte

Small configurable terminal text editor

dte [filename]
Details

get_iplayer

BBC iPlayer TV and radio downloader

get_iplayer "[search term]"
Details

isd

Interactive systemd unit manager TUI

isd
Details

kb

Minimalist command line knowledge base manager

kb add "[title]" -c "[category]"
Details

keen

Minimal terminal AI coding agent with pluggable LLM providers

keen
Details

lcl

native CLI for offline access to thousands of Linux command references

lcl
Details

mg

micro GNU Emacs-style editor

mg [file.txt]
Details

mprime

great Internet Mersenne Prime Search client

mprime
Details

oma

modern package management frontend for dpkg-based Linux distributions

sudo oma
Details

packagist

main repository for PHP packages used by Composer

composer search [query]
Details

pet

Simple command-line snippet manager

pet new
Details

pikman

PikaOS unified package manager

pikman search [package_name]
Details

regex

Regular expression syntax reference

regex
Details

sed

Stream editor for text transformations

[command] | sed 's/apple/mango/g'
Details

sshclick

Terminal-based SSH config manager with groups

sshc host list
Details

tinboard

Terminal-based client for Pinboard bookmarks

tinboard
Details

torra

Search and download torrents from your terminal

torra search "[arch linux iso]"
Details

ugm

TUI to browse UNIX users and groups

ugm
Details

wn

Command line interface to the WordNet lexical database

wn [word] -synsn
Details

xbps-tui

TUI wrapper for Void Linux package manager

xbps-tui
Details

xleak

Fast terminal Excel viewer with interactive TUI

xleak [report.xlsx]
Details

xmlstarlet

Command-line XML processing toolkit

xmlstarlet sel -t -v "[xpath]" [file.xml]
Details

yaourt

Deprecated Arch Linux AUR helper

yaourt -Syua
Details

yt-x

Browse and download YouTube from your terminal

yt-x
Details

Network diagnostics

17 commands

andcli

2FA TOTP token manager TUI for the terminal

andcli -t aegis [path/to/backup.json]
Details

animdl

Download and stream anime from the command line

animdl search "[anime name]"
Details

archwiki-rs

Browse the Arch Linux Wiki from the terminal

archwiki-rs search [query]
Details

aws-kendra

Manage ML-powered enterprise search indexes and data sources.

aws kendra create-index --name [my-index] --role-arn [arn:aws:iam::account:role/kendra-role]
Details

aws-opensearch

Manage OpenSearch Service domains for search and analytics.

aws opensearch list-domain-names
Details

google

Command-line Google search tool

google "[search query]"
Details

numbat

High-precision scientific calculator with physical units

numbat
Details

passepartui

Terminal user interface for the pass password manager

passepartui
Details

vitepress

Vite-powered static site generator

vitepress dev [docs]
Details

wacli

WhatsApp CLI for local sync, search, and messaging

wacli auth
Details

wikiman

Offline documentation search engine

wikiman [query]
Details

wp

WordPress command-line management tool

wp --info
Details

wtf

Acronym lookup and expansion

wtf [IMO]
Details

zinc

Lightweight full-text search engine

ZINC_FIRST_ADMIN_USER=[admin] ZINC_FIRST_ADMIN_PASSWORD=[password] zinc
Details

Processes and services

12 commands

fdroidcl

command-line client for F-Droid repository

fdroidcl search [query]
Details

forgit

Interactive git commands with fzf

forgit log
Details

godoc

Go documentation web server

godoc -http=:6060
Details

gyb

command-line tool for backing up and restoring Gmail

gyb --email [user@gmail.com] --action backup
Details

jira-cli

Feature-rich interactive Jira command line tool

jira init
Details

protoc

Protocol Buffers compiler and code generator

protoc --python_out=[path/to/output_directory] [input_file.proto]
Details

tblastx

Translated nucleotide to nucleotide search

tblastx -query [sequence.fasta] -db [database] -out [results.txt]
Details

try-rs

Workspace manager for temporary experiments with TUI

try-rs
Details

xbps-query

Query Void Linux package information

xbps-query -Rs [keyword]
Details

Package management

8 commands

alr

Ada/SPARK source package manager.

alr search [package_name]
Details

npm-search

searches the npm registry for packages matching the given terms

npm search [query]
Details

paci

wrapper around pacman, the Arch Linux package manager

paci [package_name]
Details

taproom

Interactive TUI for managing Homebrew packages

taproom
Details

yay

Arch Linux AUR helper

yay [package_name|search_term]
Details

Shell workflow

4 commands

disable

Disable shell builtins or other named elements

disable [builtin_name]
Details

gh-gist

manage code snippets and shareable files

gh gist create [file]
Details

opensearch

open-source search and analytics engine derived from Elasticsearch 7

opensearch
Details

Editors

3 commands

lvim

pre-configured Neovim distribution with IDE-like features

lvim
Details

navi

interactive cheatsheet tool for the command-line

navi
Details

view

Open files in read-only Vim mode

view [file]
Details

tlmgr commands

2 commands

Containers and orchestration

1 commands

lazycelery

TUI for monitoring and managing Celery workers and tasks

lazycelery
Details

HTTP and downloads

1 commands

p0f

performs passive OS fingerprinting

p0f -i [eth0]
Details

Media tools

1 commands

ytfzf

Search and play YouTube videos with fzf

ytfzf -t [search_pattern]
Details

Users and permissions

1 commands

ausearch

Search and query audit log events

sudo ausearch -m avc
Details

apptainer commands

1 commands

blastx commands

1 commands

blastx

Translated nucleotide-to-protein sequence search

blastx -query [sequences.fasta] -db [nr] -out [results.txt]
Details

bmm commands

1 commands

bmm

Fast local bookmark manager with CLI and TUI

bmm
Details

charmap commands

1 commands

comby commands

1 commands

comby

structural code search and replace tool

comby 'console.log(:[arg])' 'logger.info(:[arg])' [.js]
Details

command commands

1 commands

command

execute commands bypassing shell functions

command [ls]
Details

conda commands

1 commands

crates-tui commands

1 commands

crates-tui

Terminal UI for exploring crates.io Rust packages

crates-tui
Details

docsify commands

1 commands

docsify

dynamic Markdown documentation site generator

docsify init [./docs]
Details

doveadm commands

1 commands

doveadm

Dovecot mail server administration tool

doveadm mailbox status -u [user@example.com] all '*'
Details

fuzzel commands

1 commands

fuzzel

Wayland application launcher with fuzzy search

fuzzel
Details

googler commands

1 commands

googler

Google search from the terminal

googler [search terms]
Details

info commands

1 commands

info

reads documentation in GNU's texinfo format

info [command]
Details

meilisearch commands

1 commands

nh commands

1 commands

nix commands

1 commands

nix-search

Search for packages in Nix flakes

nix search nixpkgs [query]
Details

notes commands

1 commands

notes

simple command-line note-taking application

notes new "[note title]"
Details

npx commands

1 commands

docusaurus

static site generator optimized for documentation

npx create-docusaurus@latest [my-website] classic
Details

pacseek commands

1 commands

pacseek

TUI for browsing and searching Arch Linux packages

pacseek
Details

pio commands

1 commands

pio-lib

manages PlatformIO libraries (deprecated, use pio pkg)

pio lib search [mqtt]
Details

qsv commands

1 commands

qsv

Blazing-fast data-wrangling toolkit for CSV and tabular data

qsv count [data.csv]
Details

tblastn commands

1 commands

tblastn

Protein query to nucleotide database search

tblastn -query [protein.fasta] -db [nt_database]
Details

tuxi commands

1 commands

tuxi

Quick Google answers from the terminal

tuxi [search_terms]
Details

urpmf commands

1 commands

urpmf

Search Mageia package files and metadata

urpmf [filename]
Details

wiki-tui commands

1 commands

wikit commands

1 commands

wikit

Wikipedia summaries from the terminal

wikit [topic]
Details

xdotool commands

1 commands

xdotool

X11 keyboard and mouse automation

xdotool search --onlyvisible --name firefox
Details