[Shell] Remove tabulation

Solved
Hello,

I want to remove the tabs from my file. I'm using the command:

sed 's/^[ \t]*//;s/[ \t]*$//' <file>

This way, I'm removing all tabs at the beginning and end of the lines of my file.
However, I notice that there is still a tab in the middle of the line. Can you help me?
Thank you in advance.

Here's an excerpt from the file:

''
''
''
''
]
''[ ''
''
''
''
''

2 answers

  1. Contributor
    ```html sed -r "s/\t//ig"
    --

    Contributor member
    Specialized in networks, web mastering, programming ```
    5
    1. Super, thanks vignemail1
      0