Horje
wget files matching pattern Code Example
wget files matching pattern
# Getting http://some/site/*my_pattern*
SITE="http://some/site/"
PATTERN="my_pattern"
wget -nv -O- $SITE | 
  grep $PATTERN | 
    awk -v pat=$PATTERN -F '"' '{ for (i=1; i<=NF; ++i) { if ($i ~ pat) print $i } }' |
      while read x; do 
      	if [[ ! $x = ">" ]] ; then
      	  wget $SITE$x &>/dev/null
      	  echo $x
      	fi




Shell

Related
power is network connected Code Example power is network connected Code Example
powershell progress bar Code Example powershell progress bar Code Example
git edit last commit message Code Example git edit last commit message Code Example
bash check diff starting at specific line Code Example bash check diff starting at specific line Code Example
how to close serveice on perticular port number Code Example how to close serveice on perticular port number Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12