Flyway – The agile database migration framework for Java. Don't think that this can be used only for java apps. Flyway can be used for versioning Oracle, SQL Server, DB2, MySQL, PostgreSQL, H2 and for Hsql databases. This might be the first documentation other than the Flyway wiki for installing […]
nixhat
Here is some ways to find and replace text in multiple files using sed or perl. perl -pi -w -e 's/SEARCH/REPLACE/g;' *.txt perl -e "s/SEARCH/REPLACE/g;" -pi.save $(find DirectoryName -type f) It backs up the old file with a .save extension find /home/user -type f -exec sed -i 's/SEARCH/REPLACE/g' {} […]
Find and Replace Text Across Multiple Files

AWS IAM lets you manage users, groups of users, and access permissions for various AWS services and resources. You can also use IAM to centrally manage security credentials such as access keys, passwords, and MFA devices. Recently AWS has released IAM with web console which makes it easier to manage […]