#!/bin/bash

file="/data/rem.txt"
if [ ! -f $file ]
then
  exit 1
fi
cat $file
rm $file
