process icon indicating copy to clipboard operation
process copied to clipboard

Library for dealing with system processes

Results 39 process issues
Sort by recently updated
recently updated
newest added

## Motivation The next filepath release will add support for a new API, which fixes subtle encoding issues and improves cross platform code and memory residence. You can read about...

the most it is explained in the doc is "A list of separate command line arguments to the program" i was using: `readProcessWithExitCode "ffmpeg" ["-i", d, "-c copy", f] ""`...

Currently, we get cryptic error messages like: ``` createProcess: runInteractiveProcess: exec: does not exist (No such file or directory) ``` Which tells us nothing about what it is that we...

The documentation of `close_fds` states that: > Close all file descriptors except stdin, stdout and stderr in the new process (on Windows, only works if std_in, std_out, and std_err are...

This may be the same issue as #224, but it's on mac OS so I thought I'd mention it separately. I tried to test out the fix at https://github.com/haskell/process/pull/232, but...

The only function to stop a process I found is `terminateProcess`. According to the documentation, on Unix systems it will send the SIGTERM signal. I did some research and concluded...

The capability to change user and group was added 6 years ago in #45. There a few reasons why I believe this feature may not be pulling its weight: *...

I have observed that if you call `waitForProcess` and the process has already completed, an exception is raised. This can be rather surprising since if you launch a process and...

In simulating (`cat | less`) using `createProcess` and `CreatePipe`, I am experiencing a weird threshold on the input to `cat`. This is shrunk from a [real world problem](https://github.com/haskell/cabal/pull/7726#issuecomment-940897069). ```haskell import...

Moving from https://github.com/fpco/typed-process/issues/38. CC @norfairking This PR is not complete, the tests fail. I'm trying to determine whether this is a reasonable approach. My understanding of the issue here: 1....