Posts with "bash" Tag

Using Github with two accounts

by danaukes

Instructions

  1. Create a new, separate key for each github account

    follows ...

Read More
Bash Basics

by danaukes

Arguments

short arguments usually have a single dash followed by a single character. An ...

Read More
Using the ```find``` command in bash

by danaukes

Using the find command in bash

Find files with find

```bash find [-flags] path -expression find ~/ ...

Read More
Grep Cookbook

by danaukes

A cookbook of common ```grep``` commands
Read More
Linux / Bash Cheatsheet

by danaukes

Collected commands, tips, and tricks for working headless in Ubuntu
Read More
Rsync Quickref

by danaukes

quick recipes

Local

```bash rsync -haviP --inplace --delete-before --no-compress /storage/nas/photos /media/danaukes/extreme-ssd/ rsync -haviP --inplace --delete-before --no-compress ...

Read More
Shell Script Examples

by danaukes

Sourcing bash scripts

source my_script

and

. my_script

are equivalent. This is like copying and pasting each ...

Read More
Run scripts remotely over ssh with ```tmux```

by danaukes

Overview

tmux is tool that lets you run multiple sub-sessions from one session. It's good ...

Read More