Posts with "bash" Tag
Using Github with two accounts
by Dan Aukes
Instructions
-
Create a new, separate key for each github account
follows ...
Bash Basics
by Dan Aukes
Arguments
short arguments usually have a single dash followed by a single character. An ...
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 ~/ ...
Linux / Bash Cheatsheet
by Dan Aukes
Collected commands, tips, and tricks for working headless in Ubuntu
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 ...
Shell Script Examples
by Dan Aukes
Sourcing bash scripts
source my_script
and
. my_script
are equivalent. This is like copying and pasting each ...
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 ...