= Shell Redirection = <> ---- == Redirections == To redirect a file's contents into a command, try: {{{ : /path/to/file }}} If the `noclobber` [[Shell/ShellOptions|shell option]] is enabled, use `>|` instead to force overwriting. Use `>>` instead to append to a file, as opposed to overwriting. For details on redirecting with file descriptors, including `STDOUT` and `STDERR`, see [[Shell/FileDescriptor|here]]. ---- == Here Documents == A here document is an anonymous and transient file that is redirected into a command. {{{ echo <