/usr/share/postgresql/9.5/extension/plsh--1--2.sql is in postgresql-9.5-plsh 1.20140221-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | CREATE FUNCTION plsh_inline_handler(internal) RETURNS void
AS '$libdir/plsh'
LANGUAGE C;
CREATE OR REPLACE LANGUAGE plsh
HANDLER plsh_handler
INLINE plsh_inline_handler
VALIDATOR plsh_validator;
|