Files
Makefile-tutorial/arguments.sh
2024-11-15 22:12:29 +05:30

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: $#"