If `rename` is available use this command:
rename 's/a_LT/LT_A/' *
Another approach with `awk`:
find -type f | awk -F'a_LT' '{printf "mv \"%s\" \"%sLT_A%s\"\
", $0, $1, $2}' | bash
If `rename` is available use this command:
rename 's/a_LT/LT_A/' *
Another approach with `awk`:
find -type f | awk -F'a_LT' '{printf "mv \"%s\" \"%sLT_A%s\"\
", $0, $1, $2}' | bash