Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asv7j
/
hj
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
hj
/
execute_command.sh
asv7j
Create execute_command.sh
4248d19
verified
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
153 Bytes
#!/bin/bash
# Accept command from input
cmd=
"
$1
"
# Execute the command and capture the output
output=$(
eval
"
$cmd
"
)
# Print the output
echo
"
$output
"