After using wget to fetch multiple files, you end up with any query strings as part of the filename, remove them:
for file in *.js\?*; do mv "$file" "${file%%\?*}"; done
After using wget to fetch multiple files, you end up with any query strings as part of the filename, remove them:
for file in *.js\?*; do mv "$file" "${file%%\?*}"; done