Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pending changes exported from your codespace #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Empty file added project02/file.txt
Empty file.
Empty file added project03/project02/file.txt
Empty file.
Empty file modified what-are-case-statements/case_statement
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion what-are-conditional-statements/is_number_even
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

number=25
number=2

if [ $((number % 2)) -eq 0 ];
then
Expand Down
Empty file modified what-are-functions/add_numbers
100644 → 100755
Empty file.
Empty file modified what-is-a-bash-script/hello_world
100644 → 100755
Empty file.
6 changes: 5 additions & 1 deletion what-is-a-variable/hello_variable
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

# Welcome to your first Bash Script

echo 'Hello World!'
hello_message='Hello you!'
current_dir=$(pwd)
readonly no_change_variable="blu"

echo "$hello_message from $current_dir"