Skip to content
Advertisement

How to pass an extra option in ls using execv()?

I’m trying to execute this simple command ls -1 *.c using the execv() function.

JavaScript

The output I’m getting is

JavaScript

Advertisement

Answer

There’s a big problem in your code: execv can’t tell how big the array you’re passing it is. You absolutely need a terminating NULL element to mark the end:

JavaScript

OK, now that we have a valid execv invocation, we can deal with the ls error.

Calling execv like this is equivalent to running

JavaScript

on the command line (which would produce the same error).

When you do

JavaScript

on the command line, ls never sees *.c because the shell expands wildcards and passes a list of matching filenames to ls.

If you want to replicate that in your C code, you have to do the same thing manually. See e.g. man glob for a function that does most of the work. Here’s an adapted example from the man page that shows the general principle:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement