#!/bin/bash # get filename # by AmiNimA medicamin@gmail.com for i in *.srt; do iconv -f windows-1256 -t utf8 "$i" > "utf8-$i"; done