dmenu/lsx.c

42 lines
776 B
C
Raw Normal View History

2011-06-14 02:28:30 +08:00
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
2011-06-26 00:02:14 +08:00
#include <limits.h>
2011-06-14 02:28:30 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
2011-06-14 04:50:31 +08:00
static void lsx(const char *dir);
2011-06-14 02:28:30 +08:00
2011-10-17 01:14:51 +08:00
static int status = EXIT_SUCCESS;
2011-06-14 02:28:30 +08: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-17 01:14:51 +08:00
return status;
2011-06-14 02:28:30 +08:00
}
void
lsx(const char *dir) {
char buf[PATH_MAX];
struct dirent *d;
struct stat st;
DIR *dp;
if(!(dp = opendir(dir))) {
2011-10-17 01:14:51 +08:00
status = EXIT_FAILURE;
2011-06-14 02:28:30 +08:00
perror(dir);
return;
}
2011-06-24 03:04:50 +08:00
while((d = readdir(dp)))
2011-07-17 21:06:53 +08:00
if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < (int)sizeof buf
2011-10-17 01:14:51 +08:00
&& stat(buf, &st) == 0 && S_ISREG(st.st_mode) && access(buf, X_OK) == 0)
2011-06-14 02:28:30 +08:00
puts(d->d_name);
closedir(dp);
}