brintos

brintos / linux-shallow public Read only

0
0
Text · 185 B · d4c0179 Raw
12 lines · bash
1#!/bin/bash2# SPDX-License-Identifier: GPL-2.03 i=04file=/dev/media$15 while :; do6  echo $file7  i=$((i+1))8  R=$(./media_device_open -d $file);9 # clear10  echo -e "Loop $i\n$R"11 done12