View ASCII on Ubuntu 17
View ASCII on Ubuntu 17
Sure! Let's break it down step by step.
1. **Generate the ASCII art** using `aview`, `imagemagic`, and `asciiview` as you mentioned.
2. **Save the output** to a text file by redirecting the command output.
Here’s how you can do it:
```bash
aview -o image.png aview -f image.img -o image.svg imagemagic -f image.svg asciiview -o ascii_output.txt
```
Or, if you want to capture the ASCII art directly into a file:
```bash
asciiview -o output.txt aview -o image.png
```
Then run the command and it will write the ASCII art into `output.txt`.
Let me know if you need help with any part!