mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 15:22:37 +03:00
prepare for merge and rebase
This commit is contained in:
8
src/homework/2.3/branching/merge.sh
Normal file
8
src/homework/2.3/branching/merge.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
# display command line options
|
||||
|
||||
count=1
|
||||
for param in "$*"; do
|
||||
echo "\$* Parameter #$count = $param"
|
||||
count=$(( $count + 1 ))
|
||||
done
|
||||
8
src/homework/2.3/branching/rebase.sh
Normal file
8
src/homework/2.3/branching/rebase.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
# display command line options
|
||||
|
||||
count=1
|
||||
for param in "$*"; do
|
||||
echo "\$* Parameter #$count = $param"
|
||||
count=$(( $count + 1 ))
|
||||
done
|
||||
Reference in New Issue
Block a user