#!/bin/csh -f
set LSOUT=`ls rl_*.txt`
if ( $#LSOUT != 0 ) then
	if ( -f "rl_$USER@`hostname`.txt" ) then
		rm -f "rl_$USER@`hostname`.txt"
		if ($#LSOUT <= 1) then
			echo 'AZu\ɂȂ܂B'
		else
			echo 'ɂ[hĂl܂B'
			ls -l rl_*.txt
		endif
	else
		echo 'N[hłB'
		ls -l rl_*.txt
	endif
else
	echo 'ɃAZu\łB'
endif
