Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # install chafa for ascii art
- sudo apt install chafa
- # get example image and text
- wget -c "https://filmsbykris.com/v7/img/tux.png"
- wget -c "https://filmsbykris.com/scripts/2025/ipsum.txt"
- # Convert image to ascii/unicode text
- chafa tux.png > tux.txt
- # print text file with a max of 40 characters width
- # and place image text next to it
- fold -w 40 -s ipsum.txt|paste tux.txt -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement