This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --name mysql-5-7-24 -p 127.0.0.1:3310:3306 -e MYSQL_ROOT_HOST=% -e MYSQL_ROOT_PASSWORD=gett -d mysql/mysql-server:5.7.24 | |
mysql -u root -p --host=127.0.0.1 --port=3310 |
- Use Git Grep to Replace Strings in Files in Your Git Repository
- git grep -l 'obligatory' | xargs sed -i '' -e 's/obligatory/required/g'