#!/bin/bash

# word-wrap on or off

if [ "$1" == "off" ] || [ "$1" == "OFF" ]; then
  echo -e '\033[?7l'
else
  echo -e '\033[?7h'
fi

