Skip to content

Bash Basic Commands

by ssanjua

September 1, 2024 | 12:02 PM
Share this post:

1. Basic Commands:

CommandDescription
lsList files and directories
cdChange directory
pwdPrint working directory
mkdirCreate a new directory
rmRemove files or directories
cpCopy files or directories
mvMove or rename files or directories
catDisplay file contents
echoPrint text or variables
grepSearch for patterns in files
chmodChange file permissions
chownChange file ownership

2. Variables:

Example:

name="John"
echo "Hello, $name!"

3. Conditionals:

if [condition]; them
	# code to execute if condition is true
else
# code to execute if condition is false
fi

Example:

age=18
if [ $age -ge 18 ]; then
 echo "You are an adult."
else
 echo "You are not an adult yet."
fi

4. Loops

for variable in values; do # code to execute for each value done

Example:

fruits=("apple" "banana" "orange") for fruit in "${fruits[@]}"; do echo "I like $fruit." done

5. Functions

function_name() {
	#code to execute
}
greet() {
	echo "hello $1"
}

greet "ss4njua"

6. Command Line Arguments

echo "First argument: $1" 
echo "Second argument: $2"

7. File Redirection

DescriptionCommand
Redirecting output to a filecommand > file.txt
Appending output to a filecommand >> file.txt
Redirecting input from a filecommand < file.txt
Example:
echo "Hello, World!" > output.txt
cat input.txt >> output.txt
sort < input.txt > sorted.txt

8. Pipes

ls -l | grep ".txt"
cat file.txt | wc -l

made with ©2024 made with ❤️ by ssanjua ©