! * Option to specify the executable name separately * from the args sequence. * In this case the cmd args must only contain the * options required for this executable. * * Eg: executable{"ls"} */
| 852 | * Eg: executable{"ls"} |
| 853 | */ |
| 854 | struct executable: string_arg |
| 855 | { |
| 856 | template <typename T> |
| 857 | executable(T&& arg): string_arg(std::forward<T>(arg)) {} |
| 858 | }; |
| 859 | |
| 860 | /*! |
| 861 | * Option to set the current working directory |
nothing calls this directly
no outgoing calls
no test coverage detected