How to Delete Local and Remote Branches in Git
Working with branches is a core part of using Git. Often you will want to clean up and remove local and/or remote branches. Below are examples of how to delete…
Working with branches is a core part of using Git. Often you will want to clean up and remove local and/or remote branches. Below are examples of how to delete…
AWS CLI has made working with S3 very easy. Once you get AWS CLI installed you might ask “How do I start copying local files to S3?” The syntax for…
The AWS CLI makes working with files in S3 very easy. However, the file globbing available on most Unix/Linux systems is not quite as easy to use with the AWS…
Knowing how to sum values in Awk can be extremely useful when working with data. Fortunately, it is very easy. Using variables in Awk will feel different than in other…
Ubuntu / Ooo-Boon-Too / |oǒ’boǒntoō| Pass it on! https://youtu.be/7fJF5UIS_hE About Ubuntu
The need to get/print a particular line of a file on the Linux shell is a common task. Luckily there are various ways to do this. Below are three great…
Adding a data volume to your Docker container creates a shared directory between the container and your host file system. Data in volumes is readable and writeable to any number…