19 lines
228 B
Bash
19 lines
228 B
Bash
#!/bin/sh
|
|
|
|
# Set verbose mode
|
|
set -x
|
|
|
|
# Stop executing after error
|
|
set -e
|
|
|
|
# Use working directory
|
|
chmod -R a+w /root/.cache/act/almouse/personalwebsite
|
|
cd /root/.cache/act/almouse/personalwebsite
|
|
|
|
pwd
|
|
|
|
ls -R
|
|
|
|
# Run command
|
|
$*
|