0% found this document useful (0 votes)
26 views1 page

Script For Nulify

This script loops through a list of items in a file called /tmp/list, running each item in the background. Alternatively, it can loop through a file called /tmp/arch_list, grepping each item in that list against all files.

Uploaded by

bewithyou2003
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views1 page

Script For Nulify

This script loops through a list of items in a file called /tmp/list, running each item in the background. Alternatively, it can loop through a file called /tmp/arch_list, grepping each item in that list against all files.

Uploaded by

bewithyou2003
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

script for nulify

********************
for i in `cat /tmp/list`
>do
>$i
>done &
OR
for i in /tmp/arch_list
>grep $i *
>

You might also like