Change file names in a bash script
I’m using a simple bash script to copy, via rsync, a series of files and directories from a USB stick to a MacBook. The code is (partially) as follows: #!/bin/bash declare -A BACKUP_INFOS BACKUP_INFOS=( [/Users/<username>/Documents]=”/Volumes/CORSAIR128/.abook /Volumes/CORSAIR128/.vimrc /Volumes/CORSAIR128/argomentare /Volumes/CORSAIR128/articoli /Volumes/CORSAIR128/bibliografie” )… Read More »Change file names in a bash script