replace some string by null??

I have a string like

In this string I want to delete both "." and ":", means I want the output as:

How can I do that using "tr" or any other such command?

Yes, try it out? :wink:

$> echo './All About Linux and Unix/Shell Scripting/Shell Scripts/Dialog Utility:'| tr -d [.:]
/All About Linux and Unix/Shell Scripting/Shell Scripts/Dialog Utility

Ya. It's working. Are there any other commands which serve the same purpose?

sed, awk (both can much more, especially awk), maybe more programs.

can you please explain me with the example?

sed 's/[\.:]//g'
awk '{gsub(/[\.:]/,""); print}'

Also,the code I am trying not working why?