prepare for merge and rebase

This commit is contained in:
2022-01-28 09:45:20 +07:00
parent f176fb5cbc
commit aa455677ef
2 changed files with 16 additions and 0 deletions

View 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

View 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