Update README.md
[cmdllinux.git] / bash_n_examples / bash / sed / _sed_examples3.sh
blobd19305b43d346fa2ff14129247c0331bbd89c678
1 find -mindepth 2 -type f -name "*.mk" | \
2 while read line; do
3 sed -i 's/\$(STAGING_DIR)\$(TARGET_DIR)/\$(TARGET_DIR)/g' $line
4 done