Help for this page

Select Code to Download


  1. or download this
    `mv "$url" "$title"`
    
  2. or download this
    system('mv', $url, $title)
    
  3. or download this
    system('mv', '--', $url, $title)
    
  4. or download this
    rename($url, $title)
    
  5. or download this
    for i in `ls`; do
        some_command $i
    done
    
  6. or download this
    for i in *; do
        some_command "$i"
    done