#!/bin/bash

if [ -f /etc/fstab ]; then
  sed -i".backup" '/usb/d' /etc/fstab
else
  echo "No existe /etc/fstab"
fi
