You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#! /bin/bash
|
|
|
|
# We want to check that pin does not change the environment in unexpected ways
|
|
|
|
# Ignore PPID since it changes with every process
|
|
# Ignore environment variables prefixed with PIN_
|
|
set | $* -v "^(PPID|PIN_|_=|SSH_CLIENT|SSH_CONNECTION|RANDOM|MFLAGS)"
|
|
|