#!/bin/bash
|
|
|
|
echo "This is a sample shell script."
|
|
echo "Running some commands..."
|
|
|
|
# Add your commands below
|
|
|
|
# Example command
|
|
ls -la
|
#!/bin/bash
|
|
|
|
echo "This is a sample shell script."
|
|
echo "Running some commands..."
|
|
|
|
# Add your commands below
|
|
|
|
# Example command
|
|
ls -la
|