[bash] Removing incorrect characters

This is a script I had done to remove an incorrect character I had in some files:

1#!/bin/bash
2for e in $(grep -R "|" /var/lib/files/* | cut -d: -f1)
3do
4tr -d '|' < $e > $e
5done

Deja un comentario