#!/bin/sh

. ./test-functions

# Run this after previous to check for problem file: .bash_history.
echo -n "Untainted shell script:		"
( # Sub-shell so as not to taint the test process.
        _wget=$(copy wget)
        test_no_evil_bit $_wget --no-check-certificate https://$SF_HOSTNAME --quiet -O /dev/null
	rm -f $_wget
)
