Skip to content

Commit ce16496

Browse files
committed
shebang modified and script name changed to what_day_today
1 parent c4bdd9f commit ce16496

File tree

4 files changed

+4
-40
lines changed

4 files changed

+4
-40
lines changed

scripts/hello-user.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!bin/bash
1+
#!/bin/bash
22
# This is a basic script that reads the input "username"
33
# and then greets the "username" with "Hello".
44

55
echo "Hi! What is your name?"
66
read username
7-
echo "Hello, ${username}!"
7+
echo "Hello, ${username}!"

scripts/hello-world.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!bin/bash
1+
#!/bin/bash
22
#Simple script that prints "Hello, world!"
33

44
echo "Hello, world!"

scripts/simplecalculator.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!bin/bash
1+
#!/bin/bash
22
# Lucas Saito, 2020/04/04
33
# This is a basic calculator.
44
# It can perform addition, subtraction, multiplication

scripts/what_day_today.sh

-36
This file was deleted.

0 commit comments

Comments
 (0)