1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00
rc/sh/trash

21 lines
502 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
2021-07-29 00:37:35 -07:00
trash() { ### @-
2021-08-01 09:27:25 -07:00
### output a given number of bytes from `/dev/random`.
###
### ```
2021-08-01 11:04:20 -07:00
### $ trash 10 | xxp
### 3A A5 4F C7 6D 89 E7 D7 F7 0C
2021-08-01 09:27:25 -07:00
### ```
2021-10-13 23:43:58 -07:00
###
### **TODO:** consider renaming because trash(1) already exists.
2021-07-29 00:37:35 -07:00
[ $# -le 1 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
dd status=none if=/dev/random bs=1 count="${1:?missing count argument}"
}
[ -n "${preload+-}" ] || trash "$@"