When you use Lync to send and receive technical messages, some of the character combinations are displayed as small icons. To turn off this feature In the Lync menu select Preferences, On the Appearance tab uncheck Show emoticons in instant messages.
Category Archives: Linux
Test your RightScale script without creating unnecessary revisions
There are certain functions in RightScale scripts (RightScripts) that you cannot test without launching a new instance. To test your script: Edit the Head revision of the RightScale script and save it, Attach the Head revision of the RightScale script to the Head revision of the RightScale Server Template, Select the Head revision of the …
Continue reading “Test your RightScale script without creating unnecessary revisions”
Custom Git Status and Git Pull commands to work with all of your repositories
If you work with many Git repositories it is easy to miss a repository when you commit your changes, and very time consuming to pull from all repositories. It is easy to automate both processes. In this example, we will place all files in the ~/Git/devops-scripts folder. If you want to place your files at another …
Continue reading “Custom Git Status and Git Pull commands to work with all of your repositories”
Useful Bash commands
Most of these commands work in all Linux, MacOSX, and Unix shells, but some of them only work in selected shells. Find files recursively by file name pattern find . -name ‘*.MY_EXTENSION’ Find files, but exclude a directory from the search. (The -print is needed at the end of the line) find . -path ./tmp/windows …