So I asked this question on how to find a directory that contains a specific character.
Now I'd like to change that character to something else (not the whole name just that one character)
Example:
find "a"
aaa
bab
replace with "c"
ccc
bcb
How do I do that?
This is the code I have atm
read -p "find what character: " findwhat
find . -name "*$findwhat*" -type d -print