Guest User

Untitled

a guest
Jan 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if [[ $DIRSZIE -lt 50 ]]; then
  2. PIECE_SIZE=15
  3. else [[ $DIRSIZE -lt 150 ]]; then
  4. PIECE_SIZE=16
  5. else [[ $DIRSIZE -lt 350 ]]; then
  6. PIECE_SIZE=17
  7. else [[ $DIRSIZE -lt 512 ]]; then
  8. PIECE_SIZE=18
  9. else [[ $DIRSIZE -lt 1024 ]]; then
  10. PIECE_SIZE=19
  11. else [[ $DIRSIZE -lt 2048 ]]; then
  12. PIECE_SIZE=20
  13. else [[ $DIRSIZE -gt 2048 ]]; then
  14. PIECE_SIZE=21
  15. fi
Add Comment
Please, Sign In to add comment