Tagged Questions
1
vote
0answers
45 views
In linux, how to delete all files EXCEPT the pattern *.txt? [migrated]
I know how to delete all txt file under current directory by rm *.txt.
Does anyone know how to delete all files in current directory EXCEPT txt file?
1
vote
2answers
250 views
How to check in shell script if string variable contains a wildcard?
I'm trying to check if string contains any wildcards.
Here is my failing attempt:
#!/bin/bash
WILDCARDS='* . ? ! ] ['
a="foo*bar"
for x in $REJECTED_WILDCARDS
do
if [[ "$a" == *"$x"* ]]
...
0
votes
1answer
27 views
Wild card search to CD
I'm trying to search for the first matching directory with a wildcard in a bash shell script, it seems to be working fine on a few systems, and not on others. Is there any way around this to have it ...
4
votes
4answers
57 views
bash: for file in if exists?
So,
for f in *.c; do echo "That $f is the best C code I have ever seen"; done
if there are no c files, will gladly print
That *.c is the best C code I have ever seen
which is not desirable. Is ...
0
votes
2answers
57 views
How to tell bash to specifically escape a wildcard in a Python script
I have a script. It takes arguments, but I would like it, when it receives the string "*", to autocomplete it to a matching string in a list variable.
Unfortunately, this is impossible without the ...
1
vote
1answer
53 views
shopt -s extglob not working
I am running my script on distant server. Here is header of my .sh script:
#!/bin/bash
shopt -s extglob;
#turns on extended globbing features ('!' can then be used to exclude file names)
echo `ls ...
0
votes
2answers
100 views
Using wildcard inside case statement in bash
I'm making a simple bash script. It accepts 2 options (-d and -f). I would like to allow also the long version of this options (-directory and -file). I tried using the curly brackets wildcard but it ...
0
votes
3answers
132 views
Wildcard in variable, Shell bash, how to do ? Variable=$variable2*
For me it worked:
diretorio=$(echo 'test 123'*)
but not worked when i used variable in quotes
Var2="test 123"
diretorio=$(echo '$Var2'*)
How to solve it?
5
votes
2answers
65 views
weird behaviour of wildcharacter * in shell script
In my shell script I have following code
echo * | tr ' ' '\n'
Here I noticed that although I was using * , it was skipping hidden files(.*)
After that I tried an obvious change
echo .* | tr ' ' ...
1
vote
1answer
84 views
Unzip Contents Based On Wildcard Negative Matching
I have the following folder contents in a zip archive:
ca_ES
cs_CZ
da_DK
de_CH
de_DE
el_GR
en_GB
es_ES
fi_FI
fr_FR
gl_ES
it_IT
lv_LV
mt_MT
nb_NO
nl_NL
pt_PT
ro_RO
sk_SK
sl_SI
sq_AL
sv_SE
tr_TR
vi_VN
...
2
votes
1answer
82 views
Shell is variable a number
Good evening,
I want to write a script that will say if its argument is a number or not, however I get this:
a: 4: Syntax error: "(" unexpected (expecting ")")
At first I tried like this:
...
1
vote
2answers
121 views
Avoiding wildcard expansion in Bash loop [duplicate]
I want to use a list as parameter to a for-loop; but with double quotes, the list isn't understood as a list, and without quotes, the wildcards are evaluated to filenames.
A="a* b*"
for ex in "$A"; ...
2
votes
2answers
226 views
Loop over array, preventing wildcard expansion (*)
I'm trying to figure out what I thought would be a trivial issue in BASH, but I'm having difficulty finding the correct syntax. I want to loop over an array of values, one of them being an asterisk ...
0
votes
3answers
66 views
Reuse wildcard match in bash
I want to do something like this in bash:
scp me@server:/data/stuff/*/needthis.txt ./?/needthis.txt
Where that ? in the command will be whatever was matched by the *.
My problem is there's a ...
0
votes
2answers
261 views
List directories not containing certain files?
I used this command to find all the directories containing .mp3 in the current directory, and filtered out only the directory names:
find . -iname "*.mp3" | sed -e 's!/[^/]*$!!' -e 's!^\./!!' | sort ...
0
votes
2answers
196 views
Using Wildcards with 'rename'
I have been using the rename command to batch rename files. Up to now, I have had files like:
2010.306.18.08.11.0000.BO.ADM..BHZ.SAC
2010.306.18.08.11.0000.BO.AMM..BHZ.SAC
...
2
votes
2answers
60 views
How do I exclude a character from a range in a character class?
How do I combine the following lines for one character:
> ls file[1-5]
> ls file[!3]
To produce the same result as:
> ls file[1-2,4-5]
> file1 file2 file4 file5
1
vote
2answers
107 views
bash string replacement in a file
I am trying to replace some text in a file replacetest.xml
here is the part of the file I want to modify.
<class name="replace_after_this_string">randomtext</class>
I want to change the ...
0
votes
3answers
282 views
filename contains space and wildcard in a variable
I receive files which names contain spaces and change every week (the name contains the week number)
IE, the file for this week looks like This is the file - w37.csv
I have to write a script to take ...
7
votes
3answers
674 views
“git add” using wildcard is not functioning as I hoped - must I cd into specific directories?
When I try to do a basic git add *.erb (or any simple wildcard expressions) git is not recognizing it (them). As a side-note, I have never done this before so I'm sure it's a rookie mistake, but I've ...
1
vote
1answer
297 views
Bash scripting. grep with wildcard not working
Within bash, I'm trying to search (grep) the output of a command (ntp), for a specific string. However, one of the columns in the output is constantly changing. So for that column it could be any ...
1
vote
1answer
279 views
BASH in Android > using wildcards doesn't work
I'm attempting to track the deactivation of notifications within android.
This I planned on doing by polling the notification dumpsys every x seconds.
There for I've put the notification into a ...
2
votes
3answers
981 views
Stop shell wildcard character expansion?
Is there any way for a compiled command-line program to tell bash or csh that it does not want any wildcard characters in its parameters expanded?
For instance, one might want a shell command like:
...
2
votes
2answers
460 views
Using wildcards to exclude files with a certain suffix
I am experimenting with wildcards in bash and tried to list all the files that start with "xyz" but does not end with ".TXT" but getting incorrect results.
Here is the command that I tried:
$ ls -l ...
0
votes
2answers
180 views
Can't use wildcards in shell script
It is about 3 days I'm struggling with
D1="`ls $g???_???_?????$DATE1`"" ` |`""` wc -l`"
if [ $D1 -eq "0" ]
and still it ends with syntax error.
The last syntax error bash tells is syntax ...
2
votes
2answers
306 views
xpath querying when xml format varies
I have a series of variable types like:
abc1A, abc1B, abc3B, ...
xyz1A, xyz2A, xyz3C, ...
data1C, data2A, ...
Stored in a variety of xml formats:
<area name="DataMap">
<int ...
1
vote
1answer
146 views
Wildcard error in iteration of a bash script - Shell
I have a bunch of pdf files that starts with a unique number. And each number represents a user. And now I am trying to concat all the pdf files from each user into an "AllInOne" file. But when i try ...
2
votes
5answers
905 views
BASH parameters with wildcard
I'm trying to do a bash script that will find & copy similar files to a destination directory.
For example, I'm passing a parameter 12300 to a script and I want to copy all files that start with ...
1
vote
4answers
583 views
bash find command refuses to find more than one file with wildcard
My find is not working the way I expected. When there is more than one file it halts with error.
hpek@melda:~/temp/test$ ll
total 16
-rw-r--r-- 1 hpek staff 70B Mar 2 15:16 f1.tex
-rw-r--r-- 1 ...
2
votes
2answers
2k views
using SED with wildcard
I want to replace a string with wildcard but it doesn't work.
The string looks like "some-string-8"
I wrote
sed -i 's/string-*/string-0/g' file.txt
but the output is
some-string-08
0
votes
2answers
85 views
trouble with bash script setting up params for 'find' utility
The basic problem here is that I want to use a script to simplify making the 'find' utility skip a certain troublesome directory.
Bash scripting is not my strong suite. I'm stuck on how to get a ...
5
votes
5answers
3k views
List files not matching a pattern?
Here's how one might list all files matching a pattern in bash:
ls *.jar
How to list the complement of a pattern? i.e. all files not matching *.jar?
1
vote
3answers
414 views
What's the most efficient way to move multiple wildcards in bash?
What's the most efficient way to rewrite the following:
mv *.jpg ~/Pictures && mv *.gif ~/Pictures && mv *.png ~/Pictures
1
vote
2answers
1k views
BASH script wildcard not working
I'm trying to use mkdir command in a bash script using a "*" wildcard.
Full code is:
mkdir -p $EXTRACTDIR/$CV_NAME*/release
It supposed to create a folder "release" in an existing "OpenCV-2.2.0" ...
2
votes
2answers
751 views
Using a Wildcard Match as a Command Line Argument in Bash
I'm trying to write a Bash script to convert a bunch of files.
Assume I have a directory /path/to/my files/ with three text files: a b.txt, c d.txt and e.txt (note the spaces)
I need to be able to ...
3
votes
4answers
1k views
Can I use shell wildcards to select filenames ranging across double-digit numbers (e.g., from foo_1.jpg to foo_54.jpg)?
I have a directory with image files foo_0.jpg to foo_99.jpg. I would like to copy files foo_0.jpg through foo_54.jpg.
Is this possible just using bash wildcards?
I am thinking something like cp ...
0
votes
2answers
4k views
bash sed wildcard search replace
I'm using sed on Centos, bash.
I want to replace everything between \plain and }} with a space in the below line of text:
stuff here \plain \f2\fs20\cf2 4:21-23}} more stuff over here, could be ...
3
votes
2answers
577 views
How to prevent filename expansion in for loop in bash
In a for loop like this,
for i in `cat *.input`; do
echo "$i"
done
if one of the input file contains entries like *a, it will, and give
the filenames ending in 'a'.
Is there a simple way of ...
1
vote
4answers
1k views
implement wildcard expansion in a shell
I am trying to create custom shell as an exercise and wanted to implement wildcard expansion. How exactly do shells like bash perform the expansion? I mean what all steps are involved?
As I ...
11
votes
5answers
3k views
How to use the .* wildcard in bash but exclude the parent directory (..)?
There are often times that I want to execute a command on all files (including hidden files) in a directory. When I try using
chmod g+w * .*
it changes the permissions on all the files I want (in ...
1
vote
4answers
457 views
Linux: shell builtin string matching
I am trying to become more familiar with using the builtin string matching stuff available in shells in linux. I came across this guys posting, and he showed an example
a="abc|def"
echo ${a#*|} # ...
1
vote
2answers
3k views
Exclude a string from wildcard search in a shell
I am trying to exclude a certain string from a file search.
Suppose I have a list of files: file_Michael.txt, file_Thomas.txt, file_Anne.txt.
I want to be able and write something like
ls *<and ...
5
votes
4answers
4k views
Bash for loop with wildcards and hidden files
Just witting a simple shell script and little confused:
Here is my script:
% for f in $FILES; do echo "Processing $f file.."; done
The Command:
ls -la | grep bash
produces:
% ls -a | grep ...
1
vote
3answers
2k views
Linux command to do wild card matching
Is there any bash command to do something similar to:
if [[ $string =~ $pattern ]]
but that it works with simple wild cards (?,*) and not complex regular expressions ??
More info:
I have a ...
13
votes
4answers
2k views
Bash: what expands to all files in current directory recursively
I know **/*.ext expands to all files in all subdirectories matching *.ext, but what is a similar expansion that includes all such files in the current directory as well?

