#!/bin/bash

function DEBUG()


{


 [ "$_DEBUG" == "on" ] && $@ || :


}


for i in {1..10}


do


 DEBUG echo "I wynosi  $i"

done
