Bash scripting

This commit is contained in:
2024-11-15 22:12:29 +05:30
parent 02eed13731
commit 92742e091b
4 changed files with 218 additions and 1 deletions

9
arguments.sh Normal file
View 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: $#"