forked from pool/squid
8 lines
107 B
Sed
8 lines
107 B
Sed
|
#!/usr/bin/sed -nf
|
||
|
|
||
|
/^\s*cache_dir\s\+[[:alnum:]]\+\s\+\([[:graph:]\/]\+\)\s.*/ {
|
||
|
s//\1\/00/p
|
||
|
q
|
||
|
}
|
||
|
|