diff --git a/src/homework/2.3/branching/merge.sh b/src/homework/2.3/branching/merge.sh new file mode 100644 index 0000000..7cfffa7 --- /dev/null +++ b/src/homework/2.3/branching/merge.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# display command line options + +count=1 +for param in "$*"; do + echo "\$* Parameter #$count = $param" + count=$(( $count + 1 )) +done \ No newline at end of file diff --git a/src/homework/2.3/branching/rebase.sh b/src/homework/2.3/branching/rebase.sh new file mode 100644 index 0000000..7cfffa7 --- /dev/null +++ b/src/homework/2.3/branching/rebase.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# display command line options + +count=1 +for param in "$*"; do + echo "\$* Parameter #$count = $param" + count=$(( $count + 1 )) +done \ No newline at end of file