#!/bin/bash
if [ -d "$1" ] ; then {
	rm -rf $1
} ; else {
	if [ -e "/tmp/linux" ] ; then {
		rm -rf /tmp/linux
	} ; fi
} ; fi
