mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-17 18:14:34 +08:00
11 lines
150 B
Bash
11 lines
150 B
Bash
|
#!/bin/bash
|
||
|
i=0
|
||
|
file=/dev/media$1
|
||
|
while :; do
|
||
|
echo $file
|
||
|
i=$((i+1))
|
||
|
R=$(./media_device_open -d $file);
|
||
|
# clear
|
||
|
echo -e "Loop $i\n$R"
|
||
|
done
|