#!/bin/bash
FILENAME="movies.txt"
echo $FILENAME
count=0
cat $FILENAME | while read LINE
do
let count++
echo $LINE
wget $LINE
done
echo -e "\nTotal: $count movies copied"
Subscribe to:
Post Comments (Atom)
Free source code and tutorials for Software developers and Architects using different programming languages: .NET, C#, VB.NET, ASP, PHP, MYSQL, SQL SERVER, ORACLE.
„The reasonable man adapts himself to the world;
The unreasonable one persists in trying to adapt the world to himself. Therefore, all progress depends on the unreasonable man.” -George Bernard Shaw-
No comments:
Post a Comment