- or download this
`mv "$url" "$title"`
- or download this
system('mv', $url, $title)
- or download this
system('mv', '--', $url, $title)
- or download this
rename($url, $title)
- or download this
for i in `ls`; do
some_command $i
done
- or download this
for i in *; do
some_command "$i"
done