julien@ubuntu:~/c/shell$ cat stat.c
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
/**
* main - stat example
*
* Return: Always 0.
*/
int main(int ac, char **av)
{
unsigned int i;
struct stat st;
if (ac < 2)
{
printf("Usage: %s path_to_file ...
", av[0]);
return (1);
}
i = 1;
while (av[i])
{
printf("%s:", av[i]);
if (stat(av[i], &st) == 0)
{
printf(" FOUND
");
}
else
{
printf(" NOT FOUND
");
}
i++;
}
return (0);
}
julien@ubuntu:~/c/shell$ ./stat ls /bin/ls /usr/bin/ls
ls: NOT FOUND
/bin/ls: FOUND
/usr/bin/ls: NOT FOUND
julien@ubuntu:~/c/shell$