Skip to content
Advertisement

Remove set of special chars from a string using bash script

I need to search for the file path ending with *Tests.cs having multiple directories. I need to display all the file path in spaces instead of new line. Currently, it is displaying as

JavaScript

How to remove ./ from each file path and display it as follows?

JavaScript

My bash script is:

JavaScript

Advertisement

Answer

If your structure is consistent as in the example, it’s easy.

JavaScript

If there are arbitrary, varying depths, use globstar.

JavaScript

Then use double-asterisks for arbitrary depths.

JavaScript

None of that requires a find.

If you just need to do some other editing, pattern expansion works fine.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement