10 lines
170 B
Bash
Executable file
10 lines
170 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# NAME: tools/dev script
|
|
|
|
echo "Running tools/dev.sh script..."
|
|
|
|
echo $1 $2 $3
|
|
|
|
# Add your commands here
|
|
|
|
echo "✅ tools/dev completed successfully"
|