Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vmtouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -881,6 +881,8 @@ static void vmtouch_batch_crawl(const char *path) {
while ((read = getdelim(&line, &len, delim, f)) != -1) {
// strip the newline character
line[read-1] = '\0';
// skip comments
if (line[0] == '#') continue;
vmtouch_crawl(line);
}

Expand Down