/usr/share/doc/libghc-setenv-doc/html/setenv.txt is in libghc-setenv-doc 0.1.0-2.
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 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | -- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | A cross-platform library for setting environment variables
--
-- A cross-platform library for setting environment variables
@package setenv
@version 0.1.0
module System.SetEnv
-- | <tt>setEnv name value</tt> sets the specified environment variable to
-- <tt>value</tt>.
--
-- If <tt>value</tt> is the empty string, the specified environment
-- variable is removed from the environment.
--
-- Throws <a>IOException</a> if <tt>name</tt> is the empty string or
-- contains an equals character.
setEnv :: String -> String -> IO ()
-- | <tt>unSet name</tt> removes the specified environment variable from
-- the environment of the current process.
--
-- Throws <a>IOException</a> if <tt>name</tt> is the empty string or
-- contains an equals character.
unsetEnv :: String -> IO ()
|