I have the following file :
/
/FUSE
//
Bank S.A / N.V
/F
I want to remove all forward slashes (/
), so that the result looks like this:
FUSE
Bank S.A N.V
F
How to do so using sed
? Ive tried using tr
, but tr
is not what I need, because I want to edit the file in-place without printing it to console.