1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 10:04:06 -07:00
rc/sh/randir

16 lines
399 B
Bash
Executable file

#!/usr/bin/env sh
# compat: +ash +bash +dash +hush +ksh +mksh +oksh +osh +posh +yash +zsh
# works with busybox.
randir() { ### @-
### display a random directory in the current working directory.
###
### ```
### $ randir
### ./sh
### ```
find -maxdepth 1 -type d \( -path '/root' -prune -o -print \) | tail -n+2 | shuf | head -n1
}
[ -n "${preload+-}" ] || randir "$@"