ఉచిత కన్వర్టర్

Linux / Bash కమాండ్ చీట్ షీట్

సమగ్ర Linux మరియు బాష్ కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన ఆదేశాలను శోధించండి.

ls
List directory contents
ఉదాహరణ:ls -la /home/user
ls -la
List all files including hidden, with details
ఉదాహరణ:ls -la ~/Documents
cd
Change directory
ఉదాహరణ:cd /var/log
pwd
Print working directory path
ఉదాహరణ:pwd
mkdir
Create a new directory
ఉదాహరణ:mkdir -p /tmp/mydir/subdir
rm
Remove files or directories
ఉదాహరణ:rm -rf /tmp/oldfiles
cp
Copy files or directories
ఉదాహరణ:cp -r /src/dir /dst/dir
mv
Move or rename files/directories
ఉదాహరణ:mv oldname.txt newname.txt
touch
Create an empty file or update timestamp
ఉదాహరణ:touch newfile.txt
find
Search for files in a directory hierarchy
ఉదాహరణ:find /home -name '*.log' -mtime -7
locate
Find files by name using a prebuilt database
ఉదాహరణ:locate nginx.conf
ln
Create hard or symbolic links
ఉదాహరణ:ln -s /path/to/target /path/to/link
df
Report disk space usage of file systems
ఉదాహరణ:df -h
du
Estimate file space usage
ఉదాహరణ:du -sh /var/log/*
stat
Display file or file system status
ఉదాహరణ:stat /etc/passwd
file
Determine file type
ఉదాహరణ:file /usr/bin/bash
cat
Concatenate and display file contents
ఉదాహరణ:cat /etc/hosts
less
View file content one screen at a time
ఉదాహరణ:less /var/log/syslog
more
View file content page by page
ఉదాహరణ:more /etc/passwd
head
Output the first part of a file
ఉదాహరణ:head -n 20 /var/log/auth.log
tail
Output the last part of a file
ఉదాహరణ:tail -f /var/log/syslog
grep
Search text using patterns
ఉదాహరణ:grep -rn 'error' /var/log/
sed
Stream editor for filtering and transforming text
ఉదాహరణ:sed 's/old/new/g' file.txt
awk
Pattern scanning and text processing language
ఉదాహరణ:awk '{print $1, $3}' access.log
sort
Sort lines of text files
ఉదాహరణ:sort -k2 -n data.txt
uniq
Report or omit repeated lines
ఉదాహరణ:sort file.txt | uniq -c
wc
Print newline, word, and byte counts
ఉదాహరణ:wc -l /etc/passwd
cut
Remove sections from each line of files
ఉదాహరణ:cut -d: -f1 /etc/passwd
tr
Translate or delete characters
ఉదాహరణ:echo 'hello' | tr 'a-z' 'A-Z'
echo
Display a line of text
ఉదాహరణ:echo "Hello, World!"
printf
Format and print data
ఉదాహరణ:printf "%s\t%d\n" name 42
diff
Compare files line by line
ఉదాహరణ:diff file1.txt file2.txt
tee
Read from stdin and write to stdout and files
ఉదాహరణ:ls | tee output.txt
ps
Report a snapshot of current processes
ఉదాహరణ:ps aux | grep nginx
top
Display Linux processes in real time
ఉదాహరణ:top -u www-data
htop
Interactive process viewer (ncurses-based)
ఉదాహరణ:htop
kill
Send a signal to a process
ఉదాహరణ:kill -9 1234
killall
Kill processes by name
ఉదాహరణ:killall firefox
bg
Resume a suspended job in the background
ఉదాహరణ:bg %1
fg
Bring a job to the foreground
ఉదాహరణ:fg %1
jobs
List active jobs in the current shell
ఉదాహరణ:jobs -l
nohup
Run a command immune to hangups
ఉదాహరణ:nohup ./script.sh &
nice
Run a command with modified scheduling priority
ఉదాహరణ:nice -n 10 ./heavy_task.sh
systemctl
Control the systemd system and service manager
ఉదాహరణ:systemctl restart nginx
service
Run a System V init script
ఉదాహరణ:service apache2 status
ping
Send ICMP ECHO_REQUEST to network hosts
ఉదాహరణ:ping -c 4 google.com
curl
Transfer data from or to a server
ఉదాహరణ:curl -L -o file.zip https://example.com/file.zip
wget
Non-interactive network downloader
ఉదాహరణ:wget -q https://example.com/file.tar.gz
ssh
OpenSSH remote login client
ఉదాహరణ:ssh -i ~/.ssh/key.pem user@host
scp
Secure copy files between hosts
ఉదాహరణ:scp user@host:/path/file.txt ./local/
rsync
Remote file copying tool with delta transfer
ఉదాహరణ:rsync -avz /src/ user@host:/dst/
netstat
Print network connections and routing tables
ఉదాహరణ:netstat -tulpn
ss
Utility to investigate sockets
ఉదాహరణ:ss -tulwn
ifconfig
Configure a network interface
ఉదాహరణ:ifconfig eth0
ip
Show and manipulate routing, devices, and tunnels
ఉదాహరణ:ip addr show
nmap
Network exploration tool and port scanner
ఉదాహరణ:nmap -sV 192.168.1.0/24
dig
DNS lookup utility
ఉదాహరణ:dig +short A google.com
nslookup
Query Internet name servers interactively
ఉదాహరణ:nslookup example.com
chmod
Change file mode bits (permissions)
ఉదాహరణ:chmod 755 script.sh
chown
Change file owner and group
ఉదాహరణ:chown -R www-data:www-data /var/www
chgrp
Change group ownership
ఉదాహరణ:chgrp developers project/
sudo
Execute a command as another user (superuser)
ఉదాహరణ:sudo systemctl restart nginx
su
Change user ID or become superuser
ఉదాహరణ:su - postgres
passwd
Change user password
ఉదాహరణ:passwd username
umask
Set or display the file mode creation mask
ఉదాహరణ:umask 022
id
Print user and group information
ఉదాహరణ:id username
whoami
Print the current effective user name
ఉదాహరణ:whoami
groups
Print the groups a user is in
ఉదాహరణ:groups username
tar
Archive files using tape archive format
ఉదాహరణ:tar -czvf archive.tar.gz /path/to/dir
tar -x
Extract files from a tar archive
ఉదాహరణ:tar -xzvf archive.tar.gz -C /target/
gzip
Compress files using GNU zip
ఉదాహరణ:gzip -9 large_file.log
gunzip
Decompress gzip compressed files
ఉదాహరణ:gunzip archive.tar.gz
zip
Package and compress files into a ZIP archive
ఉదాహరణ:zip -r output.zip /path/to/dir
unzip
Extract files from a ZIP archive
ఉదాహరణ:unzip archive.zip -d /target/
bzip2
Compress files using bzip2 algorithm
ఉదాహరణ:bzip2 -z large_file.txt
xz
Compress files using the XZ algorithm
ఉదాహరణ:xz -z -9 file.txt
uname
Print system information
ఉదాహరణ:uname -a
uptime
Tell how long the system has been running
ఉదాహరణ:uptime
free
Display amount of free and used memory
ఉదాహరణ:free -h
lscpu
Display information about the CPU architecture
ఉదాహరణ:lscpu
lsblk
List information about block devices
ఉదాహరణ:lsblk -o NAME,SIZE,TYPE,MOUNTPOINT
lspci
List all PCI devices
ఉదాహరణ:lspci -v | grep VGA
dmesg
Print or control the kernel ring buffer
ఉదాహరణ:dmesg | tail -50
journalctl
Query and display messages from the journal
ఉదాహరణ:journalctl -u nginx --since '1 hour ago'
history
Display the command history list
ఉదాహరణ:history | grep docker
env
Print environment variables
ఉదాహరణ:env | grep PATH
if / then / fi
Conditional execution in shell scripts
ఉదాహరణ:if [ -f file.txt ]; then echo exists; fi
for
Loop over a list of items
ఉదాహరణ:for i in 1 2 3; do echo $i; done
while
Execute commands while a condition is true
ఉదాహరణ:while read line; do echo $line; done < file
case
Multi-branch conditional matching pattern
ఉదాహరణ:case "$var" in a) echo A;; b) echo B;; esac
function
Define a shell function
ఉదాహరణ:greet() { echo "Hello, $1!"; }; greet World
export
Set environment variables for child processes
ఉదాహరణ:export MY_VAR=value
source
Execute commands from a file in current shell
ఉదాహరణ:source ~/.bashrc
alias
Create an alias for a command
ఉదాహరణ:alias ll='ls -la'
cron / crontab
Schedule commands to run periodically
ఉదాహరణ:crontab -e # 0 * * * * /path/to/script.sh
at
Execute commands at a specified time
ఉదాహరణ:echo 'ls /tmp' | at 14:30

ఈ సాధనం గురించి

linux బాష్ కోసం సమగ్రమైన శీఘ్ర సూచన గైడ్. సాధారణంగా ఉపయోగించే ఆదేశాలు, వాక్యనిర్మాణం మరియు వర్గం ద్వారా నిర్వహించబడిన ఉదాహరణలను బ్రౌజ్ చేయండి. శోధించదగినది మరియు మొబైల్ అనుకూలమైనది — మీకు శీఘ్ర రిమైండర్ అవసరమైనప్పుడు తక్షణ ప్రాప్యత కోసం ఈ పేజీని బుక్‌మార్క్ చేయండి.

ఎలా ఉపయోగించాలి

  1. వర్గీకరించబడిన సూచన విభాగాలను బ్రౌజ్ చేయండి.
  2. నిర్దిష్ట ఆదేశాలు లేదా వాక్యనిర్మాణాన్ని కనుగొనడానికి శోధన పట్టీని ఉపయోగించండి.
  3. వినియోగ ఉదాహరణలు మరియు వివరణలను చూడటానికి ఏదైనా ఎంట్రీపై క్లిక్ చేయండి.
  4. మీ టెర్మినల్ లేదా ఎడిటర్‌లో ఉపయోగించడానికి నేరుగా ఆదేశాలను కాపీ చేయండి.

తరచుగా అడిగే ప్రశ్నలు

ఈ సూచన తాజాగా ఉందా?
సూచన విస్తృతంగా ఉపయోగించే ఆదేశాలు మరియు సంస్కరణల్లో స్థిరంగా ఉండే సింటాక్స్‌ను కవర్ చేస్తుంది. తాజా చేర్పులు లేదా సంస్కరణ-నిర్దిష్ట ఫీచర్ల కోసం, అధికారిక డాక్యుమెంటేషన్‌ని తనిఖీ చేయండి.
నేను దీన్ని ఆఫ్‌లైన్‌లో ఉపయోగించవచ్చా?
లోడ్ అయిన తర్వాత, పేజీ ఇంటర్నెట్ కనెక్షన్ లేకుండా పని చేస్తుంది. త్వరిత ప్రాప్యత కోసం దీన్ని బుక్‌మార్క్ చేయండి — తదుపరి నెట్‌వర్క్ అభ్యర్థనలు లేకుండా మొత్తం కంటెంట్ బ్రౌజర్‌లో రెండర్ చేయబడుతుంది.
ఇది సమగ్రమా లేక కేవలం ప్రాథమికమా?
ఇది 90% రోజువారీ విధులను నిర్వహించే అత్యంత సాధారణంగా ఉపయోగించే ఆదేశాలు మరియు నమూనాలను కవర్ చేస్తుంది. సముచిత లేదా అధునాతన లక్షణాల కోసం, అధికారిక డాక్యుమెంటేషన్‌ను సంప్రదించండి.
నేను జోడింపులను సూచించవచ్చా?
మేము మా సూచనలను క్రమం తప్పకుండా నవీకరిస్తాము. మీరు తప్పిపోయిన ఆదేశాలను గమనించినట్లయితే లేదా సూచనలు ఉంటే, మా సంప్రదింపు పేజీ ద్వారా మాకు తెలియజేయండి.