11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#!/bin/bash
|
|
|
|
# Ensure a command argument is provided
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <command>"
|
|
exit 1
|
|
fi
|
|
|
|
docker exec -it toolchain-toolchain-1 "$1" |