#!/bin/bash
# echo untracked files to stdout
git status --porcelain | grep '^??' | sed 's/^...//'
