ነጻ መለወጫ
ሊኑክስ / ባሽ የትእዛዝ ማጭበርበር ሉህ
አጠቃላይ ሊኑክስ እና ባሽ ማጭበርበሪያ ሉህ። 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 ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የጊት ትዕዛዝ ማጭበርበር ሉህ። 80+ አስፈላጊ የ Git ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
Docker ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የዶከር ትዕዛዝ ማጭበርበር ሉህ። 70+ አስፈላጊ Docker ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
የቪም ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የቪም ትዕዛዝ ማጭበርበር ሉህ። 80+ አስፈላጊ የቪም ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
የ SQL ቅርጸት & ማስዋቢያ
የ SQL መጠይቆችን በአሳሽዎ ውስጥ ይቅረጹ፣ ያስውቡ እና ያጽዱ። ምንም ሰቀላ አያስፈልግም - ሙሉ በሙሉ የግል እና ነጻ።