Skip to content

Commit 7ba6cae

Browse files
committed
Newlines and shebangs
1 parent 6168bb8 commit 7ba6cae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bash/clockhands.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ for i in {0..10}; do
55
m=$((t / 60 % 60))
66
s=$((t % 60))
77
printf "%02d:%02d:%02d\n" $((h == 0 ? 12 : h)) $((m)) $((s))
8-
done
8+
done

bash/hello.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
echo Hello, World!
1+
#!/usr/bin/env bash
2+
echo Hello, World!

0 commit comments

Comments
 (0)