6 lines
163 B
Bash
Executable file
6 lines
163 B
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
|
|
SERIAL_DEV="$1"
|
|
DEV="--device $1:$1"
|
|
docker run --rm -it --network=host --privileged ${DEV} -v $PWD:/usr/src/env/ext-dir inspect/serial-log $1
|