Re: files and directories with spaces in bash script

2007-03-26 Thread Robin Doer
irectory" ]]; then > for f in `find $directory -iname '*mp3' `; do > echo "found mp3 file: $f" > done > fi > done Bash uses the IFS variable for word splitting. (man bash) HTH, Robin - To unsubscribe from this list: send the line &quo

Re: translating web pages

2004-11-22 Thread Robin Doer
of babelfish-like > translation for Linux. Around babelfish I've a nice story. Some time ago a local radiostation (I come from Germany) carried out a quiz: They took the lyrics from a german song, translated it into English and finally back to German using babel.altavista.com. This is quite fu

Re: Zipping files listed in a file

2004-10-19 Thread Robin Doer
UNIX, this option can be used to powerful effect in conjunction with the find(1) command. For example, to archive all the C source files in the current directory and its subdirectories: find . -name "*.[ch]" -print | zip source -@ This should be exactly what you want! Bye, Robin

Re: Mutual Exclusion in Kernel

2004-10-06 Thread Robin Doer
possible. Thus you can control the access to a resource in different levels. Am Mittwoch, 6. Oktober 2004 10:55 schrieben Sie: > but this is like semaphore? > > thanks again > > ankit > > --- Robin Doer <[EMAIL PROTECTED]> wrote: > > Good morning! > > >

RE: Mutual Exclusion in Kernel

2004-10-06 Thread Robin Doer
Good morning! Ankit Jain ([EMAIL PROTECTED]) schrieb: > > hi > > what is spin lock? http://en.wikipedia.org/wiki/Spin_lock aka "busy waiting". A thread is polling until says "ok" and the thread continues working. > > thanks > > ankit Have fun,

Re: 2 nics in the same machine...

2004-03-18 Thread Robin Rosenberg
ow come when I ping 156.15.16.1 it does not go out nic 2... > am I missing something? Yes. The ping packet is already at it's destination. -- robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED

Re: is there some ps-to-text extractor ?

2003-07-31 Thread robin
.org/stable/text/pstotext.html Have fun, Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs

Re: bash_logout -> KDE

2003-07-20 Thread Robin Doer
g. For example xdm supports a Xreset-script which runs after terminating an user-session. Check the xdm-man page for more detailed information (section RESET PROGRAM). So long, Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a messa

Re: How can I login with ssh in bash shell ?

2003-06-24 Thread Robin Doer
public part of the key (located in ~/.ssh/id_rsa.pub) to your remote machine under ~/.ssh/authorized_keys). Now your script should work. Hope it helps, Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs

Re: New module: kernel recompile?

2003-04-03 Thread robin
as I had to do the last time? (Not that I > don't like recompiling > the > kernel; it just gets a little boring during > the 5 hours it takes.) Wow!!! The last time I built a kernel I need approx. 45 minutes! Ok, but the time depends on your system. Goold look, Robin - To unsubsc

Re: Search tool

2003-02-28 Thread Robin Doer
pages of opendir, readdir... and regex Good look, Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs

Re: File names with spaces

2003-02-18 Thread robin
}" echo "The new file is named ${newfile}" mv "$file" "$newfile" done IHMO in the main-loop it is better to choose "ls -1", so the field separator is \n and there's only one filename in each line. The next thing is to put the filename into quota

Creation of VCD slideshows

2003-01-24 Thread Robin Doer
Hi list! I'm looking for software to create a picture-slideshow in (S)VCD-format. For Win* there are some: VCDEasy, tvCD, DVD Picture View... Ok, I found a solution using VCDImager. But it is not really comfortabe. Does somebody know a good / easy to use solution? Thanks, Robin

Re: Project management

2002-12-02 Thread Robin Doer
Paul Kraus wrote: > Are there any good professional level project management tools for > Linux? I guess, you're looking for a versions system. Try CVS http://www.cvshome.org/ - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] Mor

Re: iptables or ip6tables firewall

2002-11-21 Thread Robin Doer
ommands and options. They're a subset of the iptables' commands and options, which are docuĀ­ mented in iptables(8). SEE ALSO iptables(8) IMHO, the functionalities of iptables and ip6tables are identical, ip6tables is the IPV6-version of iptables. Robin - To uns

Re: breaking up a zip file

2002-10-01 Thread Robin Doer
s 'split'. You can use it with files in text- and binary-format. After it use 'cat' to merge the files. Hope it helps Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: Who's using my files?

2002-07-12 Thread Robin Doer
g and I just never saw it? 'fuser' should tell you the pid of the process who is using your CDROM-drive. I think that's exactly that what you need?! Robin - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EM