E edwin_nl020 New Member Mar 23, 2024 2 0 1 Oct 1, 2024 #22 phaus said: @edwin_nl020 you just have to replace the "square characters" with ":" and the PBS should be able to read the folders again. I guess, the filename encoding gets lost on the file share… Click to expand... Thanks! That worked for me. I used the following command in the ct and vm directory: Code: find . -type d -name '**' | while read dir; do newdir=$(echo "$dir" | sed 's//:/g') mv "$dir" "$newdir" done
phaus said: @edwin_nl020 you just have to replace the "square characters" with ":" and the PBS should be able to read the folders again. I guess, the filename encoding gets lost on the file share… Click to expand... Thanks! That worked for me. I used the following command in the ct and vm directory: Code: find . -type d -name '**' | while read dir; do newdir=$(echo "$dir" | sed 's//:/g') mv "$dir" "$newdir" done