makedb.sh 993 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/bash
  2. #/* Copyright (C) 2014 Carlos Aguilar Melchor, Joris Barrier, Marc-Olivier Killijian
  3. # * This file is part of XPIR.
  4. # *
  5. # * XPIR is free software: you can redistribute it and/or modify
  6. # * it under the terms of the GNU General Public License as published by
  7. # * the Free Software Foundation, either version 3 of the License, or
  8. # * (at your option) any later version.
  9. # *
  10. # * XPIR is distributed in the hope that it will be useful,
  11. # * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # * GNU General Public License for more details.
  14. # *
  15. # * You should have received a copy of the GNU General Public License
  16. # * along with XPIR. If not, see <http://www.gnu.org/licenses/>.
  17. #*/
  18. if [[ ! -d db ]]; then
  19. mkdir db;
  20. touch db/foo
  21. fi
  22. /bin/rm -f db/*
  23. for (( i = 1 ; i <= $2 ; i++ ))
  24. do
  25. dd if=/dev/urandom of=db/test$i count=$1 bs=1024
  26. #dd if=/dev/zero of=db/test$i count=$1 bs=1024
  27. done