Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 724 Bytes

File metadata and controls

42 lines (28 loc) · 724 Bytes

Custom Shell Commands (functions & aliases)

Rename (rename)

  rename 'query' 'replacement' path/to/files*png
  rename 'query' 'replacement' **/*.png

Find file by name (ff)

Finds file containing a given text:

  ff bob

Git Conflict Resolver (git resolve)

Opens each conflicted file, allows you to fix the conflict and asks if you wish to save it

  git resolve

Git Destroy (git destroy)

Destroys the local and remote branch (confirms before destroying)

  git destroy {branch-name}

Shell script creator

Creates an executable file with a shebang (#!/bin/bash)

  newsh {name-of-shell-script}