ਮੁਫ਼ਤ ਪਰਿਵਰਤਕ
ਲੀਨਕਸ / ਬੈਸ਼ ਹੁਕਮ ਚੀਟ ਸ਼ੀਟ
ਵਿਆਪਕ ਲੀਨਕਸ ਅਤੇ ਬਾਸ਼ ਕਮਾਂਡ ਚੀਟ ਸ਼ੀਟ। ਉਦਾਹਰਨਾਂ, ਵਰਣਨ, ਅਤੇ ਇੱਕ-ਕਲਿੱਕ ਕਾਪੀ ਦੇ ਨਾਲ 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ਸੰਬੰਧਿਤ ਟੂਲਸ
ਸਾਰੇ ਟੂਲ ਦੇਖੋਗਿੱਟ ਕਮਾਂਡਾਂ ਚੀਟ ਸ਼ੀਟ
ਵਿਆਪਕ ਗਿੱਟ ਕਮਾਂਡ ਚੀਟ ਸ਼ੀਟ। ਉਦਾਹਰਨਾਂ, ਵਰਣਨ, ਅਤੇ ਇੱਕ-ਕਲਿੱਕ ਕਾਪੀ ਦੇ ਨਾਲ 80+ ਜ਼ਰੂਰੀ ਗਿੱਟ ਕਮਾਂਡਾਂ ਦੀ ਖੋਜ ਕਰੋ।
ਡੌਕਰ ਕਮਾਂਡਾਂ ਚੀਟ ਸ਼ੀਟ
ਵਿਆਪਕ ਡੌਕਰ ਕਮਾਂਡ ਚੀਟ ਸ਼ੀਟ. ਉਦਾਹਰਨਾਂ, ਵਰਣਨ, ਅਤੇ ਇੱਕ-ਕਲਿੱਕ ਕਾਪੀ ਦੇ ਨਾਲ 70+ ਜ਼ਰੂਰੀ ਡੌਕਰ ਕਮਾਂਡਾਂ ਦੀ ਖੋਜ ਕਰੋ।
ਵਿਮ ਕਮਾਂਡਾਂ ਚੀਟ ਸ਼ੀਟ
ਵਿਆਪਕ ਵਿਮ ਕਮਾਂਡ ਚੀਟ ਸ਼ੀਟ. ਉਦਾਹਰਣਾਂ, ਵਰਣਨ ਅਤੇ ਇੱਕ-ਕਲਿੱਕ ਕਾਪੀ ਦੇ ਨਾਲ 80+ ਜ਼ਰੂਰੀ ਵਿਮ ਕਮਾਂਡਾਂ ਦੀ ਖੋਜ ਕਰੋ।
SQL ਫਾਰਮੈਟਰ & ਬਿਊਟੀਫਾਇਰ
ਆਪਣੇ ਬ੍ਰਾਊਜ਼ਰ ਵਿੱਚ ਤੁਰੰਤ SQL ਸਵਾਲਾਂ ਨੂੰ ਫਾਰਮੈਟ ਕਰੋ, ਸੁੰਦਰ ਬਣਾਓ ਅਤੇ ਸਾਫ਼ ਕਰੋ। ਕੋਈ ਅੱਪਲੋਡ ਦੀ ਲੋੜ ਨਹੀਂ — ਪੂਰੀ ਤਰ੍ਹਾਂ ਨਿੱਜੀ ਅਤੇ ਮੁਫ਼ਤ।