Search Results

Search: Posts Made By: unexistance
10,962
Posted By unexistance
oh yes, thank you so much
oh yes, thank you so much
10,962
Posted By unexistance
Ah my bad, I am trying to detect the file to see...
Ah my bad, I am trying to detect the file to see if it existed, but cannot have it run indefinitely, so I've put the counter as a limit

using || or &&, the counter still went beyond 10, in which I...
10,962
Posted By unexistance
While loop with limit counter
#!/usr/bin/ksh

c=0
while [[ ! -f /tmp/unex || $c -lt 10 ]]; do
echo /tmp/unex NOT found, iter : $c;
((c = $c + 1));
sleep 2;
done



so, the above counter doesn't work,...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 10:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy