You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If user has destination named drive-1, drive-2, ... drive-19, drive-20 then drive-1 is rarely used because the mover assumes drive-1 is in use if a current move is in progress for drive-10-19. Same can be true for drive-2 on large destinations.
Fix appears to work. - if lsof -w -p "$pid" | grep "$drive" > /dev/null + if lsof -w -p "$pid" | grep -e "$drive/" > /dev/null
The text was updated successfully, but these errors were encountered:
If user has destination named drive-1, drive-2, ... drive-19, drive-20 then drive-1 is rarely used because the mover assumes drive-1 is in use if a current move is in progress for drive-10-19. Same can be true for drive-2 on large destinations.
Fix appears to work.
- if lsof -w -p "$pid" | grep "$drive" > /dev/null
+ if lsof -w -p "$pid" | grep -e "$drive/" > /dev/null
The text was updated successfully, but these errors were encountered: