இலவச மாற்றி
லினக்ஸ் / பாஷ் கட்டளை ஏமாற்று தாள்
விரிவான லினக்ஸ் மற்றும் பாஷ் கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 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+ அத்தியாவசிய Docker கட்டளைகளைத் தேடுங்கள்.
விம் கட்டளைகள் ஏமாற்று தாள்
விரிவான Vim கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 80+ அத்தியாவசிய Vim கட்டளைகளைத் தேடுங்கள்.
SQL ஃபார்மேட்டர் & அழகுபடுத்துபவர்
உங்கள் உலாவியில் SQL வினவல்களை உடனடியாக வடிவமைக்கவும், அழகுபடுத்தவும் மற்றும் சுத்தம் செய்யவும். பதிவேற்றம் தேவையில்லை - முற்றிலும் தனிப்பட்டது மற்றும் இலவசம்.