Re: BASh help



On Thursday, Aug 30th 2007 at 11:13 -0400, quoth Mark Haney:

=>I've got a script that's not behaving itself. I know it's something
=>silly, but I can't figure it out. The script is just a for loop that
=>runs through a text file list of files (/directory/filename format) and
=>does an 'ls' on each one. The problem is, I /want/ the script to NOT
=>find those files, i.e., those files shouldn't be there. That part
=>works, but I can't dump the output of that into a text file.
=>
=>Basically ls dumps all the 'file or directory not found' straight to the
=>console and not to the text file when I redirect output to it:
=>
=>./missingfiles.sh > testfile.txt
=>
=>I get this output:
=>
=>ls: cannot access /home2/test/20070829/KVNX20070829_225943_744_3.bz2: No
=>such file or directory
=>
=>to the console and not the text file. How do I fix that?

shopt extglob
for ii in !(z*|y*|foobar*)
do
ls -l ii
done

or even easier

echo !(z*|y*|foobar*) | xargs ls -l

Use the force Luke.

--
Time flies like the wind. Fruit flies like a banana. Stranger things have .0.
happened but none stranger than this. Does your driver's license say Organ ..0
Donor?Black holes are where God divided by zero. Listen to me! We are all- 000
individuals! What if this weren't a hypothetical question?
steveo at syslang.net

--
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list



Relevant Pages

  • Re: scripting issue
    ... =>but if i put this into a script to run from another host it fails eg ... being assigned to ROOTDEV was simply being dropped. ... Time flies like the wind. ... Stranger things have .0. ...
    (Fedora)
  • Re: shell script output
    ... =>Below is my script ... Time flies like the wind. ... Stranger things have .0. ... Donor?Black holes are where God divided by zero. ...
    (Fedora)
  • Re: .profile
    ... =>Does anyone know whether linux has something like a .profile but for cd? ... you put a script into a directory which gets executed every ... Time flies like the wind. ... Stranger things have .0. ...
    (Fedora)
  • Re: scripting help
    ... =>I have a script and the output of that script is currently ... echo $ ... Time flies like the wind. ... Stranger things have .0. ...
    (Fedora)
  • Re: scripting help
    ... =>I have a script and the output of that script is currently ... =>possible LUN tresspass or HBA failure" ... Time flies like the wind. ... Stranger things have .0. ...
    (Fedora)