Hello, 
I've setup a script to run proxmox-backup-client, that takes a list of paths and converts them in a list of .pxar paths, something like
/etc -> _etc.pxar:/etc
/root -> _root.pxar:/root
I encountered a problem should the path include a directory with a dot insiede, e.g /home/foo/.ssh, that in my script would become
/home/foo/.ssh -> _home_foo_.ssh.pxar:/home/foo/.ssh
It seems the problem is in the .pxar name, as I tried to name the archive _home_foo_ssh.pxar:/home/foo/.ssh and it works.
I know the easiest thing would be to replace also "." with "_", but is there another viable way?
BR,
Stefano
				
			I've setup a script to run proxmox-backup-client, that takes a list of paths and converts them in a list of .pxar paths, something like
/etc -> _etc.pxar:/etc
/root -> _root.pxar:/root
I encountered a problem should the path include a directory with a dot insiede, e.g /home/foo/.ssh, that in my script would become
/home/foo/.ssh -> _home_foo_.ssh.pxar:/home/foo/.ssh
It seems the problem is in the .pxar name, as I tried to name the archive _home_foo_ssh.pxar:/home/foo/.ssh and it works.
I know the easiest thing would be to replace also "." with "_", but is there another viable way?
BR,
Stefano