#!/bin/bash function lap() { x=$1 y=$2 f="\u2660" # pikk tput cup $y $x echo -e "\u250c\u2500\u2500\u2510" tput cup $((y+1)) $x echo -e "\u25026$f\u2502" tput cup $((y+2)) $x echo -e "\u2514\u2500\u2500\u2518" } clear lap 5 5 lap 10 5