I'm trying to run a command that is dependent on all files within a directory. I could do something like this:
test : dir/* dir/dir2/* dir/dir3/* ... etc
run command
But it would be much easier if I could do this (it doesn't work):
files = `find dir/`
test : $(files)
run command
Is...
I'd like to print only the part of a line enclosed
in parenthesis. For example:
input: junk_VAR1=12_junk_VAR2=231_junk
output: 12
In perl (this is too slow) it would be something like:
print ($line =~ /VAR1=(\d+)/);
Right now I'm substituting the entire line with \1, which
is faster than...
Is it possible to associate a scrollbar with a widget
other than text? I'm using more frames than will fit
on the screen. I'd like to do something similar to
the following:
#!/usr/bin/wish
for {set i 0} {$i < 100} {incr i} {
button .$i -text button
grid .$i -row $i -column 0
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.