mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-18 09:50:34 +01:00
31 lines
No EOL
323 B
Bash
31 lines
No EOL
323 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
PROMPT="▶ "
|
|
|
|
enter() {
|
|
IFS='%'
|
|
type $PROMPT
|
|
type $1
|
|
sleep 0.5
|
|
type " "
|
|
sleep 0.25
|
|
type "\n"
|
|
eval $1
|
|
type "\n"
|
|
unset IFS
|
|
}
|
|
|
|
type() {
|
|
printf '%b' $1 | pv -qL $[10+(-2 + RANDOM%5)]
|
|
}
|
|
|
|
enter "fd"
|
|
|
|
enter "fd mod"
|
|
|
|
enter "fd sh"
|
|
|
|
enter "fd -H sample"
|
|
|
|
enter "fd -h" |