مبدل رایگان
لینوکس / Bash برگه تقلب فرمان
برگه تقلب دستورات جامع لینوکس و 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 جامع. بیش از 70 دستور ضروری Docker را با مثال، توضیحات و کپی با یک کلیک جستجو کنید.
دستورات Vim برگه تقلب
برگه تقلب دستورات Vim جامع. بیش از 80 دستور ضروری Vim را با مثال، توضیحات و کپی با یک کلیک جستجو کنید.
SQL Formatter &زیبا کننده
فرمت، زیباسازی و پاکسازی درخواست های SQL را فوراً در مرورگر خود انجام دهید. بدون نیاز به آپلود - کاملا خصوصی و رایگان.