Linux Command Line Basics

Linux command line basics

Linux Command Line Basics Here are the basic commands that you should become familiar with when learning about the command line in Linux. One thing to remember is that Linux is case sensitive. That means if you type in “cd Movies” and the file is called “movies” you won’t find it. Command Line basics will […]

Read More… from Linux Command Line Basics

Alternatives to Google Search

search-alternatives

Alternatives to Google Search Google is the three-hundred pound gorilla in the room when it comes to searching on the internet, but there are privacy concerns. Searches that you make online have the potential to reveal a lot about you and your private life. This includes, but is not limited to: your habits, your interests, […]

Read More… from Alternatives to Google Search

Shell One-Liner: Replace spaces in filenames with underscores

Linux One Liners

Replace spaces in filenames with underscores   for f in *;do mv “$f” “${f// /_}”;done   How this script works and how to use it: This script will replace spaces in file names with underscores It will do this in the directory that you are currently in This rewrites all the files with underscores It […]

Read More… from Shell One-Liner: Replace spaces in filenames with underscores

Shell One-Liner : List IP addresses connected to your server on port 80

Linux One Liners

List addresses connected on server 80 with this one line of BASH shell script. You can also modify the code for other ports. […]

Read More… from Shell One-Liner : List IP addresses connected to your server on port 80