Posts with "bash" Tag

Using Github with two accounts

by Dan Aukes

Instructions

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

    follows ...

Read More
Bash Basics

by Dan Aukes

Arguments

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

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

by Dan Aukes

Using the find command in bash

Find files with find

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

Read More
Grep Cookbook

by Dan Aukes

A cookbook of common grep commands

Read More
Linux / Bash Cheatsheet

by Dan Aukes

Collected commands, tips, and tricks for working headless in Ubuntu

Read More
Rsync Quickref

by Dan Aukes

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 Dan Aukes

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 Dan Aukes

Overview

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

Read More