This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# oneoff: a utility for managing exploratory project dirs | |
# | |
# This exists because I needed something to fill the gap between `mkdir | |
# ~/Projects/some-project` and `mktemp -d`. | |
# | |
# I got tired of having to think of a name as the very first step every time I | |
# wanted to kick some code around, and as `~/tmp` began to fill up with `foo` | |
# and `asdf` dirs I realized something had to change or I'd lose it. |
OlderNewer