1
vote
4answers
48 views
Filter Hidden Files with Bash (for Batch Image Resize Script)
I'm writing a script to batch resize images. Originally I was applying an operation for file in $(ls $1), but I would like to be able to use globbing, so I'm looking at something m …
0
votes
1answer
31 views
Get the longest non-glob string at the start of a string
I'm trying to create a script to convert from $GIT_DIR/info/exclude to .gitignore files. I'd like to put the .gitignore files as close to the pattern target as possible, meaning th …
21
votes
6answers
272 views
What reasons are there to prefer glob over readdir (or vice-versa) in Perl?
This question is a spin-off from this one. Some history: when I first learned Perl, I pretty much always used glob rather than opendir + readdir because I found it easier. Then lat …
2
votes
6answers
282 views
Is there an equivalent of java.util.regex for “glob” type patterns?
Is there a standard (preferably Apache Commons or similarly non-viral) library for doing "glob" type matches in Java? When I had to do similar in Perl once, I just changed all the …
2
votes
2answers
72 views
How exactly does zsh expand globs?
I have a C program that displays it's command-line by iterating through the argv variable.
#include <stdio.h>
int main(int argc, char *argv[]){
int i = 0;
printf("- …
0
votes
3answers
34 views
Specify glob size range in Regex
How do I define a minimum and maximum (possibly unbounded) number of times a certain pattern should repeat itself? I know there's ? and *, with which I could build the pattern by r …
1
vote
2answers
71 views
graceful degradation for globbing on terminal
Whenever glob pattern match fails, it stops the whole job. For instance,
$ mv *.jpg *.png folder1 && blahblah
mv: cannot stat `*.jpg': No such file or directory
*.png is …
0
votes
1answer
90 views
What Perl glob expression matches all the files that look like /home/test-N.txt?
I am a beginner to Perl syntax and have a basic wildcard question. I am looking for an expression that would allow me to retrieve all of the following files.
/home/test-1.txt
/ …
1
vote
3answers
52 views
Bash globbing - autoexpand for a few specific cases?
I understand that the wildcard * (by itself) will expand in such a way that it means "all non-hidden files in the current folder" with hidden files being those prefixed by a period …
0
votes
5answers
473 views
Create regex from glob expression
Hi, i write program that parse text with regular expression. Regular expression should be obtained from user. I deside to use glob syntax for user input, and convert glob string to …
2
votes
3answers
131 views
How does glob return ‘filenames’ that don’t exist?
This answer indicates that glob can sometimes return 'filenames' that don't exist.
@deck = glob "{A,K,Q,J,10,9,8,7,6,5,4,3,2}{\x{2660},\x{2665},\x{2666},\x{2663}}";
However, tha …
1
vote
1answer
96 views
Is there any guarantee that results of globbing will be sorted in Perl?
Is there any guarantee that the array of filenames returned from a glob (e.g. <*>) will be sorted?
I can't find that sorting is mentioned one way or the other in the documen …
0
votes
4answers
100 views
php doesn’t scan relative path for files
Here is my current code (that i am very proud of for my first attempt at php)
<?php
$files = glob("/jobops/*.txt");
$indexcount = count($files);
sort($files);
print("<br> …
1
vote
3answers
220 views
Why does Perl’s glob return undef for every other call?
I'm not necessarily looking for a better way to do this, rather an explanations of the output would greatly be appreciated. Recently, a senior programmer asked me why his code wor …
1
vote
5answers
304 views
Globbing in C++/C, on Windows
Is there a smooth way to glob in C or C++ in Windows?
E.g., myprogram.exe *.txt sends my program an ARGV list that has...ARGV[1]=*.txt in it.
I would like to be able to have a fu …
