/wd

Primary LanguageCGNU General Public License v3.0GPL-3.0

WD

CI

Sponsor

Usage

Usage: wd DIR CMD [ARGS]

Examples

> pwd
/foo
> wd bar pwd
/foo/bar

Install

On Linux:

> cd linux
> make install

On Windows:

> cd windows
> msbuild

Note

Why you use _spawnvp on Windows instead of _execvp like execvp on Linux?

_execvp on Windows works like that overlays a calling process with a new process and that destroys the calling process. The new process runs in background.