4 lines
94 B
Bash
4 lines
94 B
Bash
#!/usr/bin/env zsh
|
|
##? drop into a temporary directory
|
|
|
|
pushd $(mktemp -d /tmp/${1:+$1.}XXXX)
|