4 lines
113 B
Bash
4 lines
113 B
Bash
#!/bin/bash
|
|
echo "Script executed with args: $1 $2"
|
|
echo "Current time: $(date)"
|
|
echo "Current directory: $(pwd)" |