summaryrefslogtreecommitdiff
path: root/sdcvless.sh
blob: ceaf1849dbf1deddec9225ca1432106f91152199 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bash
# Pass the output of sdcv to less
function def() {
	sdcv -n --utf8-output --color "$@" 2>&1 | \
	fold --width=$(tput cols) | \
	less --quit-if-one-screen -RX
}