misc/scripts/lines

11 lines
158 B
Plaintext
Raw Permalink Normal View History

2019-01-26 18:51:26 +01:00
#!/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 -