3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-11 03:33:36 +00:00

Merge pull request #304 from esden/gsed-darwin

Use gsed vs sed on Darwin.
This commit is contained in:
Clifford Wolf 2017-02-05 12:00:21 +01:00 committed by GitHub
commit 1064c8f61f

View file

@ -1,2 +1,2 @@
#!/bin/bash
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v
for f in $( find . -name .gitignore ); do sed -Ee "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v