כל הכלים
חינם

מדריך עיון של Bash / shell ניתן לחיפוש ולהדפסה — ניווט, קבצים, pipes, משתנים, לולאות, תנאים ו-one-liners שימושיים. חינם.

Navigation

8
pwd
Print the working directory
ls -la
List all files with details
cd /path
Change directory
cd -
Go to the previous directory
cd ~
Go to the home directory
tree -L 2
Show directory tree (2 levels)
pushd / popd
Push and pop the directory stack
ls -lhS
List by size, human-readable

Files & directories

10
touch file.txt
Create an empty file
mkdir -p a/b/c
Create nested directories
cp -r src dest
Copy recursively
mv old new
Move or rename
rm -rf dir
Remove recursively (careful!)
ln -s target link
Create a symbolic link
cat file.txt
Print file contents
head -n 20 / tail -n 20
First / last 20 lines
tail -f log.txt
Follow a file as it grows
less file.txt
Page through a file

Search & find

8
grep 'pattern' file
Search for a pattern in a file
grep -rin 'text' .
Recursive, case-insensitive, numbered
find . -name '*.php'
Find files by name
find . -type f -mtime -1
Files modified in the last day
find . -size +10M
Files larger than 10 MB
which node
Locate an executable
locate file.txt
Find by indexed database
grep -v 'skip' file
Invert match (exclude lines)

Text processing

9
wc -l file
Count lines
sort file | uniq -c
Sort then count duplicates
cut -d',' -f1 file
Extract a CSV column
awk '{print $1}' file
Print the first field
sed 's/old/new/g' file
Substitute text
tr 'a-z' 'A-Z'
Translate characters
diff a.txt b.txt
Compare two files
tee out.txt
Write to a file and stdout
xargs -I{} cmd {}
Build commands from input

Pipes & redirection

9
a | b
Pipe output of a into b
cmd > file
Redirect stdout (overwrite)
cmd >> file
Redirect stdout (append)
cmd 2> err.log
Redirect stderr
cmd > out 2>&1
Redirect both streams
cmd < input.txt
Read stdin from a file
cmd1 && cmd2
Run cmd2 only if cmd1 succeeds
cmd1 || cmd2
Run cmd2 only if cmd1 fails
cmd &
Run in the background

Permissions & ownership

8
chmod 755 file
Set rwx for owner, rx for others
chmod +x script.sh
Make a file executable
chmod -R 644 dir
Recursive permission change
chown user:group file
Change owner and group
umask 022
Default permission mask
sudo cmd
Run a command as root
stat file
Show file metadata
ls -l file
View permission bits

Processes & system

9
ps aux
List running processes
top / htop
Live process monitor
kill -9 PID
Force-kill a process
pkill -f name
Kill processes by name
jobs / fg / bg
Manage background jobs
df -h
Disk space usage
du -sh dir
Size of a directory
free -h
Memory usage
uname -a
System and kernel info

Variables & expansion

9
NAME='value'
Set a variable (no spaces)
echo \"$NAME\"
Use a variable
export PATH=\"$PATH:/x\"
Export to child processes
$(command)
Command substitution
${VAR:-default}
Default if unset
$1 $2 $@
Script positional arguments
$?
Exit status of the last command
read -p 'Name: ' x
Read user input
echo {1..5}
Brace expansion

Scripting

9
#!/usr/bin/env bash
Shebang line
set -euo pipefail
Safer strict mode
if [ -f file ]; then ...; fi
Conditional on a file test
[ \"$a\" = \"$b\" ]
String comparison
for f in *.txt; do ...; done
Loop over files
while read line; do ...; done < file
Read a file line by line
case \"$x\" in a) ...;; esac
Multi-way branch
function greet() { echo hi; }
Define a function
trap cleanup EXIT
Run a handler on exit

אף רשומה אינה תואמת ל-„:q”.


אודות דף עזר Shell

דף הרמאה זה ל-Bash ולשל (shell) מכסה את שורת הפקודה מהצעדים הראשונים ועד לכתיבת סקריפטים: ניווט, קבצים ותיקיות, חיפוש ואיתור, עיבוד טקסט, pipes והפניות (redirection), הרשאות ובעלות, תהליכים ומידע על המערכת, משתנים והרחבה (expansion), ומבני תכנות לסקריפטים של shell.

הוא משלב פקודות יומיומיות — ls,‏ cp,‏ grep,‏ find,‏ chmod,‏ ps — יחד עם הדגלים (flags) שהופכים אותן לשימושיות, בתוספת תחביר ה-pipe, ה-redirection וה-expansion שהופך פקודות בודדות לשורות פקודה משולבות (one-liners). קטע הסקריפטים מזכיר לכם את תחביר הלולאות, התנאים והפונקציות בכל פעם שאתם כותבים סקריפט פעם בשנה.

הכול נמצא בעמוד חינמי אחד שרץ בצד הלקוח: החיפוש מסנן את השורות בזמן אמת, תוכן העניינים הדביק (sticky) מאפשר לקפוץ בין הקטעים, לחיצה אחת מעתיקה כל פקודה, וכפתור ההדפסה מספק לכם עמוד עיון מודפס לשולחן העבודה.

כיצד להשתמש ב-דף עזר Shell

  1. עברו על הקטעים, מניווט וקבצים ותיקיות ועד Pipes והפניות (redirection) וסקריפטים.
  2. הקלידו שם פקודה כמו grep או chmod בתיבת החיפוש כדי לסנן את הדף באופן מיידי.
  3. קפצו לקטע כמו עיבוד טקסט דרך הסרגל הדביק בצד.
  4. לחצו על פקודה או על סמל ההעתקה שלה כדי להעתיק אותה, ואז הדביקו אותה במסוף (terminal) שלכם.
  5. הדפיסו את הדף כדי לקבל עיון לא מקוון (offline) לפקודות Bash.

שאלות נפוצות

הדף נכתב עבור Bash ומעטפות בסגנון POSIX, כך שכמעט הכול עובד ללא שינוי ב-bash,‏ zsh ומעטפות דומות ב-Linux וב-macOS.

שניהם. לצד פקודות קבצים, חיפוש, עיבוד טקסט ותהליכים, קטעים ייעודיים מכסים משתנים והרחבה (expansion) וגם מבני תכנות לסקריפטים — לולאות, תנאים והתחביר שאתם שוכחים בין סקריפט לסקריפט.

כן. לחצו על הפקודה או על סמל ההעתקה בשורה שלה, והיא תועתק ללוח (clipboard), מוכנה להדבקה במסוף.

תמיד קראו פקודה לפני הרצתה, במיוחד כל דבר הכולל rm, הרשאות או redirection. כל שורה כוללת תיאור בן שורה אחת של מה בדיוק הפקודה עושה.

כן, לגמרי חינם — זהו עמוד עיון שרץ בצד הלקוח, ללא חשבון וללא הגבלות.

שתף זאת

חיפושים פופולריים
linux commands cheat sheet bash cheat sheet shell commands list grep and find examples bash scripting reference chmod permissions cheat sheet pipes and redirection bash terminal commands list
צריך עזרה?
נתקלת בבעיה בכלי הזה? ספר לצוות שלנו.
דיווח על בעיה

הוסיפו כלי חינמי זה לאתר שלכם — העתיקו והדביקו את הקוד שלהלן.