Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
set -e
set -u

echo "Script execution started"

echo "Current date and time:"
date "+%Y-%m-%d %H:%M:%S"
Expand All @@ -18,3 +17,18 @@ echo "Working directory:"
pwd

echo "Script execution finished"

# Typo in my commment
echo "Script execution started"

for i in {1..10}; do
echo "$i"
done

# Not same tabulation
for i in {1..10}; do
echo "$i"
done

# Bad command
echo "Bad command
Loading