Posts tagged with “bash”

Understanding ssh-agent and ssh-add

You may have come across the following message when doing some operation that uses your private key, such as working with git or ssh:

Read more →

What you need to know about bash functions

Bash, as a scripting language, can be a bit painful sometimes. It doesn’t have good distinction between variable types, it has strange syntax for functions and the syntax for statements (such as if/while/case) is unintuitive and inconsistent. Having said that, you can rely on shell script being available on any Unix machine, and bash is almost as prevalent. Therefore, it’s often the best choice for scripting.

Read more →

Wait for a unix process to finish

I sometimes find myself in the situation where I have a command running in my terminal, and want to run another command only after the first has finished. I’m pretty forgetful, so I don’t want to come back later and start the new command.

Read more →

Finding the process ID (PID) of a command in unix

Getting the PID of a running command is something I do daily, particularly by grepping on the name, e.g.:

Read more →