Originally posted by: n0cmonkey
I've never found much use in xargs. I'd do the find delete thing with:
find . -name "*.tmp" -exec rm {} \;
Originally posted by: Sunner
Originally posted by: n0cmonkey
I've never found much use in xargs. I'd do the find delete thing with:
find . -name "*.tmp" -exec rm {} \;
Well, it can do more than delete things with find![]()
Originally posted by: n0cmonkey
Originally posted by: Sunner
Originally posted by: n0cmonkey
I've never found much use in xargs. I'd do the find delete thing with:
find . -name "*.tmp" -exec rm {} \;
Well, it can do more than delete things with find![]()
I know that.
Any other examples? I'm probably thinking too small, but it's tough to come up with one that makes me go "oh yeah, I can use that!"![]()
Originally posted by: TGS
no mention of case in scripts?
Originally posted by: TGS
Generically case works as a much more intuitive process over nested if/else/then statements. It facilitates a more streamlined script in respect to both writing and reading. I personally use case over nest if/else/then statements.
freeos explaination.
Originally posted by: topdoubledigit
what is a *nix command anyways?
Originally posted by: xtknight
What does modprobe do?
How do you 'associate' a driver with a device?
How would I get my USB TV tuner (ATI USB Wonder 2.0) to work with 64-bit Linux? Do I tell /dev/usb0 (or something like that) to use tvtuner.o? How would I do it? ATI doesn't offer Linux drivers but I've had my tuner working under Fedora Core 4 32-bit (but it automatically did). I can only assume that means it's possible under SUSE 10 64-bit too? I see ATI USB TV Wonder 2.0N in the USB devices list in SUSE 10 64-bit, but how do I 'make' it a tuner or capture device? I don't know what tuner or video processor my TV Wonder uses. It is an analog TV device.
Originally posted by: xtknight
Difference between modprobe/insmod?
How do you 'associate' a driver with a device?
Originally posted by: Tarrant64
Maybe someone here can help. I am trying to move text from one file to another using vi/vim.
It's over 50 lines(probably roughly 370 or so), and it's a script i'm trying to edit into an html document. I basically want to move that whole file to a specific spot. I tried "yG" and "pp" but it just copied 50 lines(max buffer or something?). Eitherway, can someone help me?
VI/VIM, thanks!
Originally posted by: Stiganator
apropos
Originally posted by: Basie
I am not really clear on adding a device driver as a module. In the past, a few of the Distro's
I tried did not have the sundance.ko driver I needed for my NIC. The driver does not come
ready to install like in WinXP. How do you prepare it and add it as a module?
Originally posted by: jndietz
What is LILO?
A little late, but in case anyone else wants to do this: Open the HTML file in vim. Move your insertion point to the place where you'd like to insert the other file. ThenOriginally posted by: Tarrant64
Maybe someone here can help. I am trying to move text from one file to another using vi/vim.
It's over 50 lines(probably roughly 370 or so), and it's a script i'm trying to edit into an html document. I basically want to move that whole file to a specific spot. I tried "yG" and "pp" but it just copied 50 lines(max buffer or something?). Eitherway, can someone help me?
VI/VIM, thanks!
Originally posted by: Pandamonium
I've been trying to find documentation for rm that works with my school's server. (Or my school's server is set up oddly...)
If I want to delete everything in my public_html folder, I try:
rm -r public_html
It asks me if I want to examine files in the directory, so I type "y". Then I am prompted with "remove blahblahblah" for EVERY file. I've tried responding with "a" and "all", to no avail. If I say no to examining files in the directory, the command doesn't seem to do anything.
I have >2000 files in >100 folders, and deleting them all for every new CMS test/implementation takes a god-awful long time in filezilla. I'd love ANY guidance at this point.