brace-expansion
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 w[详细]
2023-03-10 11:03 分类:问答bash shell program
!/bi开发者_JAVA百科n/bash echo Enter the num read n for i in { 1..10 } do m=$(( n*i )) echo \"$i * $n\" = $m[详细]
2022-12-19 17:22 分类:问答