verify-lfs.sh 216 B

1234567891011
  1. #!/bin/bash
  2. if [ ! -f "./lfs/regular-file.txt" ]; then
  3. echo "Expected regular file does not exist"
  4. exit 1
  5. fi
  6. if [ ! -f "./lfs/lfs-file.bin" ]; then
  7. echo "Expected lfs file does not exist"
  8. exit 1
  9. fi