Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of kgaidis

kgaidis

kgaidis has asked 4 questions and find answers to 45 problems.

Stats

1.3k
EtPoint
448
Vote count
4
questions
45
answers

About

Helpful Links

  • How To Remove A Submodule
  • Pretty Print Dictionary
  • Remove Provisioning Profiles
  • Correct Child ViewController Order
  • Clean Up Old Branches Not On Remote
  • Renaming files

Tips

Renaming

  • brew install rename

Renames files recursively:

  • find . -exec rename -s 'CIPost' 'CIFeedUnit' {} +

Rename file contents recursively:

  • export LC_CTYPE=C && export LANG=C && find . -type f -exec sed -i '' -e 's/CIPost/CIFeedUnit/g' {} +
  • Sources: [1][2]