Files
Makefile-tutorial/shell/arguments.sh
2025-02-23 15:43:13 +00:00

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