/usr/share/doc/libghc-hsh-doc/html/HSH.txt is in libghc-hsh-doc 2.1.0-2build1.
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | -- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Library to mix shell scripting with Haskell programs
--
-- HSH is designed to let you mix and match shell expressions with
-- Haskell programs. With HSH, it is possible to easily run shell
-- commands, capture their output or provide their input, and pipe them
-- to and from other shell commands and arbitrary Haskell functions at
-- will. Category: System
@package HSH
@version 2.1.0
-- | Copyright (c) 2006-2009 John Goerzen, jgoerzen@complete.org
module HSH.Channel
-- | The main type for communicating between commands. All are expected to
-- be lazy.
data Channel
ChanString :: String -> Channel
ChanBSL :: ByteString -> Channel
ChanHandle :: Handle -> Channel
chanAsString :: Channel -> IO String
chanAsBSL :: Channel -> IO ByteString
chanAsBS :: Channel -> IO ByteString
-- | Writes the Channel to the given Handle. If the first parameter is
-- True, do this in a separate thread and close the handle afterwards.
chanToHandle :: Bool -> Channel -> Handle -> IO ()
class Channelizable a
toChannel :: Channelizable a => a -> Channel
instance [overlap ok] Channelizable ByteString
instance [overlap ok] Channelizable Handle
instance [overlap ok] Channelizable ByteString
instance [overlap ok] Channelizable String
-- | Copyright (c) 2006-2009 John Goerzen, jgoerzen@complete.org
module HSH.Command
-- | Type for the environment.
type Environment = Maybe [(String, String)]
-- | A shell command is something we can invoke, pipe to, pipe from, or
-- pipe in both directions. All commands that can be run as shell
-- commands must define these methods.
--
-- Minimum implementation is <a>fdInvoke</a>.
--
-- Some pre-defined instances include:
--
-- <ul>
-- <li>A simple bare string, which is passed to the shell for execution.
-- The shell will then typically expand wildcards, parse parameters,
-- etc.</li>
-- <li>A <tt>(String, [String])</tt> tuple. The first item in the tuple
-- gives the name of a program to run, and the second gives its
-- arguments. The shell is never involved. This is ideal for passing
-- filenames, since there is no security risk involving special shell
-- characters.</li>
-- <li>A <tt>Handle -> Handle -> IO ()</tt> function, which reads
-- from the first handle and write to the second.</li>
-- <li>Various functions. These functions will accept input representing
-- its standard input and output will go to standard output.</li>
-- </ul>
--
-- Some pre-defined instance functions include:
--
-- <ul>
-- <li><tt>(String -> String)</tt>, <tt>(String -> IO String)</tt>,
-- plus the same definitions for ByteStrings.</li>
-- <li><tt>([String] -> [String])</tt>, <tt>([String] -> IO
-- [String])</tt>, where each <tt>String</tt> in the list represents a
-- single line</li>
-- <li><tt>(() -> String)</tt>, <tt>(() -> IO String)</tt>, for
-- commands that explicitly read no input. Useful with closures. Useful
-- when you want to avoid reading stdin because something else already
-- is. These have the unit as part of the function because otherwise we
-- would have conflicts with things such as bare Strings, which represent
-- a command name.</li>
-- </ul>
class Show a => ShellCommand a
fdInvoke :: ShellCommand a => a -> Environment -> Channel -> IO (Channel, [InvokeResult])
data PipeCommand a b
PipeCommand :: a -> b -> PipeCommand a b
-- | Pipe the output of the first command into the input of the second.
(-|-) :: (ShellCommand a, ShellCommand b) => a -> b -> PipeCommand a b
-- | Different ways to get data from <a>run</a>.
--
-- <ul>
-- <li>IO () runs, throws an exception on error, and sends stdout to
-- stdout</li>
-- <li>IO String runs, throws an exception on error, reads stdout into a
-- buffer, and returns it as a string. Note: This output is not
-- lazy.</li>
-- <li>IO [String] is same as IO String, but returns the results as
-- lines. Note: this output is not lazy.</li>
-- <li>IO ExitCode runs and returns an ExitCode with the exit
-- information. stdout is sent to stdout. Exceptions are not thrown.</li>
-- <li>IO (String, ExitCode) is like IO ExitCode, but also includes a
-- description of the last command in the pipe to have an error (or the
-- last command, if there was no error).</li>
-- <li>IO ByteString and are similar to their String counterparts.</li>
-- <li>IO (String, IO (String, ExitCode)) returns a String read lazily
-- and an IO action that, when evaluated, finishes up the process and
-- results in its exit status. This command returns immediately.</li>
-- <li>IO (IO (String, ExitCode)) sends stdout to stdout but returns
-- immediately. It forks off the child but does not wait for it to
-- finish. You can use <a>checkResults</a> to wait for the finish.</li>
-- <li>IO Int returns the exit code from a program directly. If a signal
-- caused the command to be reaped, returns 128 + SIGNUM.</li>
-- <li>IO Bool returns True if the program exited normally (exit code 0,
-- not stopped by a signal) and False otherwise.</li>
-- </ul>
--
-- To address insufficient laziness, you can process anything that needs
-- to be processed lazily within the pipeline itself.
class RunResult a
run :: (RunResult a, ShellCommand b) => b -> a
-- | A convenience function. Refers only to the version of <a>run</a> that
-- returns <tt>IO ()</tt>. This prevents you from having to cast to it
-- all the time when you do not care about the result of <a>run</a>.
--
-- The implementation is simply:
--
-- <pre>
-- runIO :: (ShellCommand a) => a -> IO ()
-- runIO = run
-- </pre>
runIO :: ShellCommand a => a -> IO ()
-- | Another convenience function. This returns the first line of the
-- output, with any trailing newlines or whitespace stripped off. No
-- leading whitespace is stripped. This function will raise an exception
-- if there is not at least one line of output. Mnemonic: runSL means
-- "run single line".
--
-- This command exists separately from <a>run</a> because there is
-- already a <a>run</a> instance that returns a String, though that
-- instance returns the entirety of the output in that String.
runSL :: ShellCommand a => a -> IO String
-- | Result type for shell commands. The String is the text description of
-- the command, not its output.
type InvokeResult = (String, IO ExitCode)
-- | Evaluates result codes and raises an error for any bad ones it finds.
checkResults :: (String, ExitCode) -> IO ()
-- | Handle an exception derived from a program exiting abnormally
tryEC :: IO a -> IO (Either ExitCode a)
-- | Catch an exception derived from a program exiting abnormally
catchEC :: IO a -> (ExitCode -> IO a) -> IO a
-- | Sets an environment variable, replacing an existing one if it exists.
--
-- Here's a sample ghci session to illustrate. First, let's see the
-- defaults for some variables:
--
-- <pre>
-- Prelude HSH> runIO $ "echo $TERM, $LANG"
-- xterm, en_US.UTF-8
-- </pre>
--
-- Now, let's set one:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ "echo $TERM, $LANG"
-- foo, en_US.UTF-8
-- </pre>
--
-- Or two:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ setenv [("LANG", "de_DE.UTF-8")] $ "echo $TERM, $LANG"
-- foo, de_DE.UTF-8
-- </pre>
--
-- We could also do it easier, like this:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo"), ("LANG", "de_DE.UTF-8")] $ "echo $TERM, $LANG"
-- foo, de_DE.UTF-8
-- </pre>
--
-- It can be combined with unsetenv:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ unsetenv ["LANG"] $ "echo $TERM, $LANG"
-- foo,
-- </pre>
--
-- And used with pipes:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ "echo $TERM, $LANG" -|- "tr a-z A-Z"
-- FOO, EN_US.UTF-8
-- </pre>
--
-- See also <a>unsetenv</a>.
setenv :: ShellCommand cmd => [(String, String)] -> cmd -> EnvironCommand cmd
-- | Removes an environment variable if it exists; does nothing otherwise.
--
-- See also <a>setenv</a>, which has a more extensive example.
unsetenv :: ShellCommand cmd => [String] -> cmd -> EnvironCommand cmd
instance [overlap ok] Show (EnvironCommand a)
instance [overlap ok] Show (PipeCommand a b)
instance [overlap ok] ShellCommand a => ShellCommand (EnvironCommand a)
instance [overlap ok] Show EnvironFilter
instance [overlap ok] RunResult (IO (IO (String, ExitCode)))
instance [overlap ok] RunResult (IO (ByteString, IO (String, ExitCode)))
instance [overlap ok] RunResult (IO (ByteString, IO (String, ExitCode)))
instance [overlap ok] RunResult (IO (String, IO (String, ExitCode)))
instance [overlap ok] RunResult (IO ByteString)
instance [overlap ok] RunResult (IO ByteString)
instance [overlap ok] RunResult (IO String)
instance [overlap ok] RunResult (IO [String])
instance [overlap ok] RunResult (IO Bool)
instance [overlap ok] RunResult (IO Int)
instance [overlap ok] RunResult (IO ExitCode)
instance [overlap ok] RunResult (IO (String, ExitCode))
instance [overlap ok] RunResult (IO ())
instance [overlap ok] (ShellCommand a, ShellCommand b) => ShellCommand (PipeCommand a b)
instance [overlap ok] ShellCommand String
instance [overlap ok] ShellCommand (String, [String])
instance [overlap ok] ShellCommand (() -> IO [String])
instance [overlap ok] ShellCommand ([String] -> IO [String])
instance [overlap ok] ShellCommand (() -> [String])
instance [overlap ok] ShellCommand ([String] -> [String])
instance [overlap ok] Show (() -> IO [String])
instance [overlap ok] Show ([String] -> IO [String])
instance [overlap ok] Show (() -> [String])
instance [overlap ok] Show ([String] -> [String])
instance [overlap ok] ShellCommand (Channel -> IO Channel)
instance [overlap ok] ShellCommand (() -> ByteString)
instance [overlap ok] ShellCommand (ByteString -> ByteString)
instance [overlap ok] ShellCommand (() -> ByteString)
instance [overlap ok] ShellCommand (ByteString -> ByteString)
instance [overlap ok] ShellCommand (() -> String)
instance [overlap ok] ShellCommand (String -> String)
instance [overlap ok] ShellCommand (() -> IO ByteString)
instance [overlap ok] ShellCommand (ByteString -> IO ByteString)
instance [overlap ok] ShellCommand (() -> IO ByteString)
instance [overlap ok] ShellCommand (ByteString -> IO ByteString)
instance [overlap ok] ShellCommand (() -> IO String)
instance [overlap ok] ShellCommand (String -> IO String)
instance [overlap ok] Show (() -> IO ByteString)
instance [overlap ok] Show (ByteString -> IO ByteString)
instance [overlap ok] Show (() -> ByteString)
instance [overlap ok] Show (ByteString -> ByteString)
instance [overlap ok] Show (() -> IO ByteString)
instance [overlap ok] Show (ByteString -> IO ByteString)
instance [overlap ok] Show (() -> ByteString)
instance [overlap ok] Show (ByteString -> ByteString)
instance [overlap ok] Show (() -> IO String)
instance [overlap ok] Show (String -> IO String)
instance [overlap ok] Show (() -> String)
instance [overlap ok] Show (String -> String)
instance [overlap ok] Show (Channel -> IO Channel)
instance [overlap ok] Show (Handle -> Handle -> IO ())
-- | Copyright (c) 2006-2009 John Goerzen, jgoerzen@complete.org
--
-- This module provides shell-like commands. Most, but not all, are
-- designed to be used directly as part of a HSH pipeline. All may be
-- used outside HSH entirely as well.
module HSH.ShellEquivs
-- | Return the absolute path of the arg. Raises an error if the
-- computation is impossible.
abspath :: FilePath -> IO FilePath
-- | Like <a>catTo</a>, but appends to the file.
appendTo :: FilePath -> String -> IO String
-- | The filename part of a path
basename :: FilePath -> FilePath
-- | Changes the current working directory to the given path, executes the
-- given I/O action, then changes back to the original directory, even if
-- the I/O action raised an exception.
--
-- This is an alias for the MissingH function System.Path.bracketCWD.
bracketCD :: FilePath -> IO a -> IO a
-- | Load the specified files and display them, one at a time.
--
-- The special file <tt>-</tt> means to display the input. If it is not
-- given, no input is processed at all.
--
-- <tt>-</tt> may be given a maximum of one time.
--
-- See also <a>catBytes</a> .
catFrom :: [FilePath] -> Channel -> IO Channel
-- | Copy data from input to output, optionally with a fixed maximum size,
-- in bytes. Processes data using ByteStrings internally, so be aware of
-- any possible UTF-8 conversions.
--
-- You may wish to use <tt>hSetBuffering h (BlockBuffering Nothing)</tt>
-- prior to calling this function for optimal performance.
--
-- See also <a>catFrom</a>, <a>catBytesFrom</a>
catBytes :: (Maybe Integer) -> Channel -> IO Channel
-- | Generic version of <a>catBytes</a>; reads data from specified Channel,
-- and ignores stdin.
catBytesFrom :: Channel -> (Maybe Integer) -> Channel -> IO Channel
-- | Takes input, writes it to the specified file, and does not pass it on.
-- The return value is the empty string. See also <tt>catToBS</tt>,
-- <a>catToFIFO</a>
catTo :: FilePath -> Channel -> IO Channel
-- | Like <a>catTo</a>, but opens the destination in ReadWriteMode instead
-- of ReadOnlyMode. Due to an oddity of the Haskell IO system, this is
-- required when writing to a named pipe (FIFO) even if you will never
-- read from it.
--
-- This call will BLOCK all threads on open until a reader connects.
--
-- This is provided in addition to <a>catTo</a> because you may want to
-- cat to something that you do not have permission to read from.
--
-- This function is only available on POSIX platforms.
--
-- See also <a>catTo</a>
catToFIFO :: FilePath -> Channel -> IO Channel
-- | An alias for System.Directory.setCurrentDirectory.
--
-- Want to change to a user's home directory? Try this:
--
-- <pre>
-- glob "~jgoerzen" >>= cd . head
-- </pre>
--
-- See also <a>bracketCD</a>.
cd :: FilePath -> IO ()
-- | Split a list by a given character and select the nth list.
--
-- <pre>
-- cut ' ' 2 "foo bar baz quux" -> "bar"
-- </pre>
cut :: Integer -> Char -> String -> String
-- | Split a list by a given character and select ranges of the resultant
-- lists.
--
-- <pre>
-- cutR [2..4] ' ' "foo bar baz quux foobar" -> "baz quux foobar"
-- cutR [1..1000] ' ' "foo bar baz quux foobar" -> "bar baz quux foobar"
-- cutR [-1000..1000] ' ' "foo bar baz quux foobar" -> "foo bar baz quux foobar"
-- </pre>
--
-- Note that too large and too small indices are essentially ignored.
cutR :: [Integer] -> Char -> String -> String
-- | The directory part of a path
dirname :: FilePath -> FilePath
-- | Read all input and produce no output. Discards input completely.
discard :: Channel -> IO Channel
-- | Takes a string and sends it on as standard output.
--
-- The input to this function is never read.
--
-- You can pass this thing a String, a ByteString, or even a Handle.
--
-- See also <tt>echoBS</tt>.
echo :: Channelizable a => a -> Channel -> IO Channel
-- | Exits with the specified error code. 0 indicates no error.
exit :: Int -> IO a
-- | Takes a pattern. Returns a list of names that match that pattern.
-- Handles:
--
-- <pre>
-- ~username at beginning of file to expand to user's home dir
-- ? matches exactly one character
-- * matches zero or more characters
-- [list] matches any character in list
-- [!list] matches any character not in list
-- </pre>
--
-- The result of a tilde expansion on a nonexistant username is to do no
-- tilde expansion.
--
-- The tilde with no username equates to the current user.
--
-- Non-tilde expansion is done by the MissingH module System.Path.Glob.
glob :: FilePath -> IO [FilePath]
-- | Search for the string in the lines. Return those that match. Same as:
--
-- <pre>
-- grep needle = filter (isInfixOf needle)
-- </pre>
grep :: String -> [String] -> [String]
-- | Search for the string in the lines. Return those that do NOT match.
grepV :: String -> [String] -> [String]
-- | Search for the regexp in the lines. Return those that match.
egrep :: String -> [String] -> [String]
-- | Search for the regexp in the lines. Return those that do NOT match.
egrepV :: String -> [String] -> [String]
-- | Join lines of a file
joinLines :: [String] -> [String]
-- | Convert a string to all lower case
lower :: String -> String
-- | Convert a string to all upper case
upper :: String -> String
-- | Creates the given directory. A value of 0o755 for mode would be
-- typical.
--
-- An alias for System.Posix.Directory.createDirectory.
--
-- The second argument will be ignored on non-POSIX systems.
mkdir :: FilePath -> FileMode -> IO ()
-- | Number each line of a file
numberLines :: [String] -> [String]
-- | An alias for System.Directory.getCurrentDirectory.
pwd :: IO FilePath
-- | Return the destination that the given symlink points to.
--
-- An alias for System.Posix.Files.readSymbolicLink
--
-- This function is only available on POSIX platforms.
readlink :: FilePath -> IO FilePath
-- | As <a>readlink</a>, but turns the result into an absolute path.
--
-- This function is only available on POSIX platforms.
readlinkabs :: FilePath -> IO FilePath
-- | Reverse characters on each line (rev)
rev :: [String] -> [String]
-- | Reverse words on each line
--
-- Reverse characters on each line (rev)
revW :: [String] -> [String]
-- | Sets an environment variable, replacing an existing one if it exists.
--
-- Here's a sample ghci session to illustrate. First, let's see the
-- defaults for some variables:
--
-- <pre>
-- Prelude HSH> runIO $ "echo $TERM, $LANG"
-- xterm, en_US.UTF-8
-- </pre>
--
-- Now, let's set one:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ "echo $TERM, $LANG"
-- foo, en_US.UTF-8
-- </pre>
--
-- Or two:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ setenv [("LANG", "de_DE.UTF-8")] $ "echo $TERM, $LANG"
-- foo, de_DE.UTF-8
-- </pre>
--
-- We could also do it easier, like this:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo"), ("LANG", "de_DE.UTF-8")] $ "echo $TERM, $LANG"
-- foo, de_DE.UTF-8
-- </pre>
--
-- It can be combined with unsetenv:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ unsetenv ["LANG"] $ "echo $TERM, $LANG"
-- foo,
-- </pre>
--
-- And used with pipes:
--
-- <pre>
-- Prelude HSH> runIO $ setenv [("TERM", "foo")] $ "echo $TERM, $LANG" -|- "tr a-z A-Z"
-- FOO, EN_US.UTF-8
-- </pre>
--
-- See also <a>unsetenv</a>.
setenv :: ShellCommand cmd => [(String, String)] -> cmd -> EnvironCommand cmd
-- | Double space a file; add an empty line between each line.
space :: [String] -> [String]
-- | Inverse of double <a>space</a>; drop all empty lines.
unspace :: [String] -> [String]
-- | Reverse lines in a String (like Unix tac).
--
-- Implemented as:
--
-- <pre>
-- tac = reverse
-- </pre>
--
-- See <a>uniq</a>.
tac :: [String] -> [String]
-- | Takes input, writes it to all the specified files, and passes it on.
-- This function does <i>NOT</i> buffer input.
--
-- See also <a>catFrom</a>.
tee :: [FilePath] -> Channel -> IO Channel
-- | FIFO-safe version of <a>tee</a>.
--
-- This call will BLOCK all threads on open until a reader connects.
--
-- This function is only available on POSIX platforms.
teeFIFO :: [FilePath] -> Channel -> IO Channel
-- | Translate a character x to y, like:
--
-- <pre>
-- tr 'e' 'f'
-- </pre>
--
-- Or, in sed,
--
-- <pre>
-- y//
-- </pre>
tr :: Char -> Char -> String -> String
-- | Delete specified character in a string.
trd :: Char -> String -> String
-- | Count number of words in a file (like wc -w)
wcW :: [String] -> [String]
-- | Count number of lines. Like wc -l
wcL :: [String] -> [String]
-- | Removes an environment variable if it exists; does nothing otherwise.
--
-- See also <a>setenv</a>, which has a more extensive example.
unsetenv :: ShellCommand cmd => [String] -> cmd -> EnvironCommand cmd
-- | Remove duplicate lines from a file (like Unix uniq).
--
-- Takes a String representing a file or output and plugs it through
-- lines and then nub to uniqify on a line basis.
uniq :: String -> String
-- | Copyright (c) 2006 John Goerzen, jgoerzen@complete.org
--
-- Welcome to HSH, the Haskell Shell infrastructure.
--
-- <a>http://software.complete.org/hsh</a>
--
-- HSH is designed to let you mix and match shell expressions with
-- Haskell programs.
--
-- Here are a few examples to get you started:
--
-- <pre>
-- run $ "echo /etc/pass*" :: IO String
-- -> "/etc/passwd /etc/passwd-"
--
-- runIO $ "ls -l" -|- "wc -l"
-- -> 12
--
-- runIO $ "ls -l" -|- wcL
-- -> 12
--
-- runIO $ ("ls", ["-l", "file with spaces.txt"])
-- glob "~jgoerzen" >>= cd . head
-- </pre>
--
-- wcL is a pure Haskell function defined in <a>HSH.ShellEquivs.wcL</a>
-- as:
--
-- <pre>
-- wcL :: [String] -> [String]
-- wcL inp = [show $ genericLength inp]
-- </pre>
--
-- Here's another example:
--
-- <pre>
-- let countLines = (zipWith (\i line -> printf "%-5d %s" i line)
-- [(1::Int)..])::([String] -> [String])
--
-- runIO $ ("ls", ["-l"]) -|- countLines -|- filter (isSuffixOf "hs")
-- 6 -rw-r--r-- 1 jgoerzen jgoerzen 1285 Jun 6 09:43 HSH.hs
-- 11 -rw-r--r-- 1 jgoerzen jgoerzen 565 Jun 6 09:43 test.hs
-- </pre>
--
-- To use HSH, you'll just want to import the HSH module. To learn more,
-- please see the information in <a>HSH.Command</a> and
-- <a>HSH.ShellEquivs</a>.
--
-- You can run a command with HSH in several ways:
--
-- <ul>
-- <li>By using <a>run</a> in a context that expects IO (), which will
-- leave the final standard output going to the normal standard output of
-- the program</li>
-- <li>By using <a>run</a> in a context that expects a String, which will
-- capture standard output into a buffer and present it as a String</li>
-- <li>Any of the numerous other methods documented in
-- <a>RunResult</a>.</li>
-- <li>The shortcut functions <a>runIO</a> and <a>runSL</a>. <a>runIO</a>
-- lets you run a command and force the context IO (), which is a
-- frequently-useful shortcut when you don't care about the result.
-- <a>runSL</a> grabs the first line of output in the result.</li>
-- </ul>
--
-- You can then specify a command, which could be a single command or a
-- command joined together with pipes.
--
-- There are many different items that make valid types; see the list of
-- instances of <a>ShellCommand</a> for a full list. Here are a few:
--
-- <ul>
-- <li>A simple bare string is passed to the shell for execution. The
-- shell will then typically expand wildcards, parse parameters,
-- etc.</li>
-- <li>A <tt>(String, [String])</tt> tuple. The first item in the tuple
-- gives the name of a program to run, and the second gives its
-- arguments. The shell is never involved. This is ideal for passing
-- filenames, since there is no security risk involving special shell
-- characters.</li>
-- <li>A Haskell function. This function will accept input representing
-- its standard input and generate output to go to stdout. Function types
-- that are supported natively include <tt>(String -> String)</tt>,
-- <tt>(String -> IO String)</tt>, plus many more involving
-- ByteStrings and functions that take no input. See <a>ShellCommand</a>
-- for more.</li>
-- </ul>
--
-- Pipes can be constructed by using the -|- operator, as illustrated
-- above. It is quite possible to pipe data between Haskell functions and
-- shell commands at will.
--
-- In addition, <a>HSH.ShellEquivs</a> provides a number of useful
-- pure-Haskell equivalents of regular shell commands.
--
-- For more information, please consult the other modules in HSH as well
-- as the HSH wiki at:
--
-- <a>http://software.complete.org/hsh</a>
module HSH
|