Tagged Questions
The brace-expansion tag has no wiki summary.
5
votes
4answers
123 views
When do you use brace expansion?
I understood what brace expansion is.
But I don't know where I use that.
When do you use it?
Please give me some convenient examples.
Thanks.
4
votes
2answers
167 views
How to handle shell expansions in GNU Make under Ubuntu?
Given this very simple Makefile:
all:
@mkdir -pv test/{a,b}
I get this output on OS X 10.6.8 and CentOS 5.5:
mkdir: created directory `test'
mkdir: created directory `test/a'
mkdir: created ...
3
votes
2answers
273 views
How can I make a multiplication table using bash brace expansion? So far I have this: echo $[{1..10}*{1..10}]
I am trying to learn bash at a deeper level, and I decided to make a multiplication table. I have the functionality with the statement :
echo $[{1..10}*{1..10}]
but that gives me the following ...
2
votes
6answers
113 views
Bash: Brace expansion in scripts not working due to unwanted escaping
Maybe I am too blind to see and sitting already too long at my keyboard...
I want to do something like that in a bash script (bash 4.1.10 btw.)
# rm -rf /some/path/{folder1,folder2,folder3}
Works ...
2
votes
1answer
193 views
(zsh brace expansion | seq) for character lists - how?
Bash allows me to write the statement,
$ for i in {h..k} ; do echo $i ; done
but zsh only allows number list expansion such as {8..13}.
What's the best workaround? Something like seq for ...
2
votes
2answers
93 views
bash shell program
!/bin/bash
echo Enter the num
read n
for i in { 1..10 }
do
m=$(( n*i ))
echo "$i * $n" = $m
done
i got error as
for: 8: Illegal number: {
kindly suggest a solution
1
vote
4answers
119 views
Algorithm for BASH/CSH/ZSH style brace expansion
If I have a string like
a/{b,c,d}/e
then I want to be able to produce this output:
a/b/e
a/c/e
a/d/e
You get the idea. I need to implement this in C. I have written a brute force kind of code ...
1
vote
1answer
221 views
Multiply variable ranges with Bash brace expansion
I've a question extending the code in this question: Can you multiply two variable ranges in Bash using brace expansion (not seq) and not using loops?
This is what I've tried so far
Work out how ...
1
vote
3answers
411 views
Tricky brace expansion in shell
When using a POSIX shell, the following
touch {quick,man,strong}ly
expands to
touch quickly manly strongly
Which will touch the files quickly, manly, and strongly, but is it possible to ...
0
votes
1answer
46 views
Brace Expansion not working bash
I am trying to use brace expansion in a bash script as follows.
#!/bin/bash
document_root="/var/www/www.example.com"
`chmod -R g+w $document_root/{../captcha,../files}`
this gives me the error
...
0
votes
1answer
60 views
How can I trigger brace expansion inside a script?
I'm writing a script which needs to use the shell's brace expansion, but nothing I've tried works. For (a contrived) instance, say I have a variable containing the string
thing{01..02}
and I ...
0
votes
1answer
256 views
How to do brace expansion tab-completion, for filenames in vim?
In vim (and bash), you can specify alternatives in filenames, eg:
:arga project/html/{index,sitemap}.html
This expands to "project/html/index.html" and "project/html/sitemap.html" (the :arga ...