ಉಚಿತ ಪರಿವರ್ತಕ
ಲಿನಕ್ಸ್ / ಬ್ಯಾಷ್ ಕಮಾಂಡ್ ಚೀಟ್ ಶೀಟ್
ಸಮಗ್ರ ಲಿನಕ್ಸ್ ಮತ್ತು ಬ್ಯಾಷ್ ಕಮಾಂಡ್ ಚೀಟ್ ಶೀಟ್. ಉದಾಹರಣೆಗಳು, ವಿವರಣೆಗಳು ಮತ್ತು ಒಂದು ಕ್ಲಿಕ್ ನಕಲುಗಳೊಂದಿಗೆ 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+ ಅಗತ್ಯ ಡಾಕರ್ ಆಜ್ಞೆಗಳನ್ನು ಹುಡುಕಿ.
ವಿಮ್ ಆಜ್ಞೆಗಳು ಚೀಟ್ ಶೀಟ್
ಸಮಗ್ರ ವಿಮ್ ಕಮಾಂಡ್ ಚೀಟ್ ಶೀಟ್. ಉದಾಹರಣೆಗಳು, ವಿವರಣೆಗಳು ಮತ್ತು ಒಂದು ಕ್ಲಿಕ್ ನಕಲುಗಳೊಂದಿಗೆ 80+ ಅಗತ್ಯ Vim ಆಜ್ಞೆಗಳನ್ನು ಹುಡುಕಿ.
SQL ಫಾರ್ಮ್ಯಾಟರ್ & ಬ್ಯೂಟಿಫೈಯರ್
ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿ ತಕ್ಷಣವೇ SQL ಪ್ರಶ್ನೆಗಳನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಿ, ಸುಂದರಗೊಳಿಸಿ ಮತ್ತು ಸ್ವಚ್ಛಗೊಳಿಸಿ. ಯಾವುದೇ ಅಪ್ಲೋಡ್ ಅಗತ್ಯವಿಲ್ಲ - ಸಂಪೂರ್ಣವಾಗಿ ಖಾಸಗಿ ಮತ್ತು ಉಚಿತ.