ఉచిత కన్వర్టర్
Linux / Bash కమాండ్ చీట్ షీట్
సమగ్ర Linux మరియు బాష్ కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన ఆదేశాలను శోధించండి.
ls
List directory contents
ఉదాహరణ:
ls -la /home/userls -la
List all files including hidden, with details
ఉదాహరణ:
ls -la ~/Documentscd
Change directory
ఉదాహరణ:
cd /var/logpwd
Print working directory path
ఉదాహరణ:
pwdmkdir
Create a new directory
ఉదాహరణ:
mkdir -p /tmp/mydir/subdirrm
Remove files or directories
ఉదాహరణ:
rm -rf /tmp/oldfilescp
Copy files or directories
ఉదాహరణ:
cp -r /src/dir /dst/dirmv
Move or rename files/directories
ఉదాహరణ:
mv oldname.txt newname.txttouch
Create an empty file or update timestamp
ఉదాహరణ:
touch newfile.txtfind
Search for files in a directory hierarchy
ఉదాహరణ:
find /home -name '*.log' -mtime -7locate
Find files by name using a prebuilt database
ఉదాహరణ:
locate nginx.confln
Create hard or symbolic links
ఉదాహరణ:
ln -s /path/to/target /path/to/linkdf
Report disk space usage of file systems
ఉదాహరణ:
df -hdu
Estimate file space usage
ఉదాహరణ:
du -sh /var/log/*stat
Display file or file system status
ఉదాహరణ:
stat /etc/passwdfile
Determine file type
ఉదాహరణ:
file /usr/bin/bashcat
Concatenate and display file contents
ఉదాహరణ:
cat /etc/hostsless
View file content one screen at a time
ఉదాహరణ:
less /var/log/syslogmore
View file content page by page
ఉదాహరణ:
more /etc/passwdhead
Output the first part of a file
ఉదాహరణ:
head -n 20 /var/log/auth.logtail
Output the last part of a file
ఉదాహరణ:
tail -f /var/log/sysloggrep
Search text using patterns
ఉదాహరణ:
grep -rn 'error' /var/log/sed
Stream editor for filtering and transforming text
ఉదాహరణ:
sed 's/old/new/g' file.txtawk
Pattern scanning and text processing language
ఉదాహరణ:
awk '{print $1, $3}' access.logsort
Sort lines of text files
ఉదాహరణ:
sort -k2 -n data.txtuniq
Report or omit repeated lines
ఉదాహరణ:
sort file.txt | uniq -cwc
Print newline, word, and byte counts
ఉదాహరణ:
wc -l /etc/passwdcut
Remove sections from each line of files
ఉదాహరణ:
cut -d: -f1 /etc/passwdtr
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 42diff
Compare files line by line
ఉదాహరణ:
diff file1.txt file2.txttee
Read from stdin and write to stdout and files
ఉదాహరణ:
ls | tee output.txtps
Report a snapshot of current processes
ఉదాహరణ:
ps aux | grep nginxtop
Display Linux processes in real time
ఉదాహరణ:
top -u www-datahtop
Interactive process viewer (ncurses-based)
ఉదాహరణ:
htopkill
Send a signal to a process
ఉదాహరణ:
kill -9 1234killall
Kill processes by name
ఉదాహరణ:
killall firefoxbg
Resume a suspended job in the background
ఉదాహరణ:
bg %1fg
Bring a job to the foreground
ఉదాహరణ:
fg %1jobs
List active jobs in the current shell
ఉదాహరణ:
jobs -lnohup
Run a command immune to hangups
ఉదాహరణ:
nohup ./script.sh &nice
Run a command with modified scheduling priority
ఉదాహరణ:
nice -n 10 ./heavy_task.shsystemctl
Control the systemd system and service manager
ఉదాహరణ:
systemctl restart nginxservice
Run a System V init script
ఉదాహరణ:
service apache2 statusping
Send ICMP ECHO_REQUEST to network hosts
ఉదాహరణ:
ping -c 4 google.comcurl
Transfer data from or to a server
ఉదాహరణ:
curl -L -o file.zip https://example.com/file.zipwget
Non-interactive network downloader
ఉదాహరణ:
wget -q https://example.com/file.tar.gzssh
OpenSSH remote login client
ఉదాహరణ:
ssh -i ~/.ssh/key.pem user@hostscp
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 -tulpnss
Utility to investigate sockets
ఉదాహరణ:
ss -tulwnifconfig
Configure a network interface
ఉదాహరణ:
ifconfig eth0ip
Show and manipulate routing, devices, and tunnels
ఉదాహరణ:
ip addr shownmap
Network exploration tool and port scanner
ఉదాహరణ:
nmap -sV 192.168.1.0/24dig
DNS lookup utility
ఉదాహరణ:
dig +short A google.comnslookup
Query Internet name servers interactively
ఉదాహరణ:
nslookup example.comchmod
Change file mode bits (permissions)
ఉదాహరణ:
chmod 755 script.shchown
Change file owner and group
ఉదాహరణ:
chown -R www-data:www-data /var/wwwchgrp
Change group ownership
ఉదాహరణ:
chgrp developers project/sudo
Execute a command as another user (superuser)
ఉదాహరణ:
sudo systemctl restart nginxsu
Change user ID or become superuser
ఉదాహరణ:
su - postgrespasswd
Change user password
ఉదాహరణ:
passwd usernameumask
Set or display the file mode creation mask
ఉదాహరణ:
umask 022id
Print user and group information
ఉదాహరణ:
id usernamewhoami
Print the current effective user name
ఉదాహరణ:
whoamigroups
Print the groups a user is in
ఉదాహరణ:
groups usernametar
Archive files using tape archive format
ఉదాహరణ:
tar -czvf archive.tar.gz /path/to/dirtar -x
Extract files from a tar archive
ఉదాహరణ:
tar -xzvf archive.tar.gz -C /target/gzip
Compress files using GNU zip
ఉదాహరణ:
gzip -9 large_file.loggunzip
Decompress gzip compressed files
ఉదాహరణ:
gunzip archive.tar.gzzip
Package and compress files into a ZIP archive
ఉదాహరణ:
zip -r output.zip /path/to/dirunzip
Extract files from a ZIP archive
ఉదాహరణ:
unzip archive.zip -d /target/bzip2
Compress files using bzip2 algorithm
ఉదాహరణ:
bzip2 -z large_file.txtxz
Compress files using the XZ algorithm
ఉదాహరణ:
xz -z -9 file.txtuname
Print system information
ఉదాహరణ:
uname -auptime
Tell how long the system has been running
ఉదాహరణ:
uptimefree
Display amount of free and used memory
ఉదాహరణ:
free -hlscpu
Display information about the CPU architecture
ఉదాహరణ:
lscpulsblk
List information about block devices
ఉదాహరణ:
lsblk -o NAME,SIZE,TYPE,MOUNTPOINTlspci
List all PCI devices
ఉదాహరణ:
lspci -v | grep VGAdmesg
Print or control the kernel ring buffer
ఉదాహరణ:
dmesg | tail -50journalctl
Query and display messages from the journal
ఉదాహరణ:
journalctl -u nginx --since '1 hour ago'history
Display the command history list
ఉదాహరణ:
history | grep dockerenv
Print environment variables
ఉదాహరణ:
env | grep PATHif / then / fi
Conditional execution in shell scripts
ఉదాహరణ:
if [ -f file.txt ]; then echo exists; fifor
Loop over a list of items
ఉదాహరణ:
for i in 1 2 3; do echo $i; donewhile
Execute commands while a condition is true
ఉదాహరణ:
while read line; do echo $line; done < filecase
Multi-branch conditional matching pattern
ఉదాహరణ:
case "$var" in a) echo A;; b) echo B;; esacfunction
Define a shell function
ఉదాహరణ:
greet() { echo "Hello, $1!"; }; greet Worldexport
Set environment variables for child processes
ఉదాహరణ:
export MY_VAR=valuesource
Execute commands from a file in current shell
ఉదాహరణ:
source ~/.bashrcalias
Create an alias for a command
ఉదాహరణ:
alias ll='ls -la'cron / crontab
Schedule commands to run periodically
ఉదాహరణ:
crontab -e # 0 * * * * /path/to/script.shat
Execute commands at a specified time
ఉదాహరణ:
echo 'ls /tmp' | at 14:30సంబంధిత టూల్స్
అన్ని టూల్స్ చూడండిGit ఆదేశాలు చీట్ షీట్
సమగ్ర Git కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన Git ఆదేశాలను శోధించండి.
డాకర్ ఆదేశాలు చీట్ షీట్
సమగ్ర డాకర్ కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 70+ ముఖ్యమైన డాకర్ ఆదేశాలను శోధించండి.
Vim ఆదేశాలు చీట్ షీట్
సమగ్ర Vim కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన Vim ఆదేశాలను శోధించండి.
SQL ఫార్మాటర్ & బ్యూటిఫైయర్
మీ బ్రౌజర్లో SQL ప్రశ్నలను తక్షణమే ఫార్మాట్ చేయండి, అందంగా చేయండి మరియు శుభ్రం చేయండి. అప్లోడ్ అవసరం లేదు — పూర్తిగా ప్రైవేట్ మరియు ఉచితం.