#!/bin/sh

if [ $# = 2 ]; then
	cat ./config.txt | sed -e "s/%LOGIN%/$1/" -e "s/%PASSWD%/$2/"
else
	echo "Usage: $0 <login> <passwd>"
fi
