मुफ्त कनवर्टर
Linux / Bash कमांड चीट शीट
Linux और Bash कमांड की व्यापक चीट शीट। 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 कमांड खोजें।
Docker कमांड चीट शीट
व्यापक Docker कमांड चीट शीट। 70+ आवश्यक Docker कमांड उदाहरणों, विवरण और वन-क्लिक कॉपी के साथ खोजें।
Vim कमांड चीट शीट
व्यापक Vim कमांड चीट शीट। 80+ आवश्यक Vim कमांड को उदाहरण, विवरण और एक-क्लिक कॉपी के साथ खोजें।
SQL क्वेरी फ़ॉर्मेटर और हाइलाइटर
अपने ब्राउज़र में SQL क्वेरी को तुरंत फ़ॉर्मेट, सुंदर और सिंटैक्स-हाइलाइट करें। मुफ़्त, सुरक्षित, अपलोड की आवश्यकता नहीं।