mirror of
https://github.com/Hizenberg469/Makefile-tutorial.git
synced 2026-04-19 22:02:24 +03:00
created shell dir
This commit is contained in:
9
shell/arguments.sh
Normal file
9
shell/arguments.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/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: $#"
|
||||
Reference in New Issue
Block a user