8 lines
108 B
Bash
8 lines
108 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
ls | sort -R | tail -$N | while read file; do
|
||
|
|
||
|
neofetch --ascii ~/.scripts/ascii/file
|
||
|
|
||
|
done
|