misc/scripts/lines
2019-01-27 11:37:34 +01:00

11 lines
158 B
Fish
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env fish
set char
set num (math (tput cols)'*'(tput lines))
set_color yellow
for i in (seq $num)
echo -n $char[(random 1 2)]
end
cat -