What's the equivalent of the bash in windows batch?
Posted
by symfony
on Stack Overflow
See other posts from Stack Overflow
or by symfony
Published on 2010-03-25T10:01:04Z
Indexed on
2010/03/25
10:03 UTC
Read the original article
Hit count: 286
while [1 = 1]
do
eject
sleep 1
eject -t
sleep 1
done
And this is said to be the same:
watch -n 1 eject -T
What does it do?What's the equivalent in batch?
© Stack Overflow or respective owner