#!/bin/bash

paramnum="$#"

STATION_PATH=/sys/relays/stations

for var in "$@"
do
  station="st$var"
  echo 1 > $STATION_PATH/$station/mode
done


