mirror of
https://github.com/Hizenberg469/Makefile-tutorial.git
synced 2026-04-20 06:12:23 +03:00
9 lines
191 B
Bash
9 lines
191 B
Bash
#!/bin/bash
|
|
|
|
IFS=","
|
|
echo "Script name: $0"
|
|
echo "First argument: $1"
|
|
echo "Second argument: $2"
|
|
echo "All arguments with \$@: $@"
|
|
echo "All arguments with \$*: $*"
|
|
echo "Arguments count: $#" |