dmenu/lsx.c

42 lines
776 B
C
Raw Normal View History

2011-06-13 20:28:30 +02:00
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
2011-06-25 18:02:14 +02:00
#include <limits.h>
2011-06-13 20:28:30 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
2011-06-13 22:50:31 +02:00
static void lsx(const char *dir);
2011-06-13 20:28:30 +02:00
2011-10-16 19:14:51 +02:00
static int status = EXIT_SUCCESS;
2011-06-13 20:28:30 +02:00
int
main(int argc, char *argv[]) {
int i;
if(argc < 2)
lsx(".");
else for(i = 1; i < argc; i++)
lsx(argv[i]);
2011-10-16 19:14:51 +02:00
return status;
2011-06-13 20:28:30 +02:00
}
void
lsx(const char *dir) {
char buf[PATH_MAX];
struct dirent *d;
struct stat st;
DIR *dp;
if(!(dp = opendir(dir))) {
2011-10-16 19:14:51 +02:00
status = EXIT_FAILURE;
2011-06-13 20:28:30 +02:00
perror(dir);
return;
}
2011-06-23 21:04:50 +02:00
while((d = readdir(dp)))
2011-07-17 15:06:53 +02:00
if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < (int)sizeof buf
2011-10-16 19:14:51 +02:00
&& stat(buf, &st) == 0 && S_ISREG(st.st_mode) && access(buf, X_OK) == 0)
2011-06-13 20:28:30 +02:00
puts(d->d_name);
closedir(dp);
}