#bash-script
Read more stories on Hashnode
Articles with this tag
Consider we are having this set of files, #!/bin/sh declare -A dictionary FILES=`ls *.xml` for FILE in ${FILES} do IFS='_' read -r -a array <<<...