33 lines
446 B
Markdown
33 lines
446 B
Markdown
# Afficher une image dans le terminal
|
|
|
|
|
|
|
|
### iTerm2
|
|
|
|
```bash
|
|
printf "\n\033]1337;File=;inline=1:`cat soco-cli-logo-01-large.png | base64`\a\n"
|
|
|
|
printf "\n\033]1337;File=;width=200px;inline=1:`cat soco-cli-logo-01-large.png | base64`\a\n"
|
|
```
|
|
|
|
https://iterm2.com/documentation-images.html
|
|
|
|
|
|
|
|
### imgcat
|
|
|
|
https://github.com/olivere/iterm2-imagetools
|
|
|
|
```bash
|
|
imgcat soco-cli-logo-01-large.png
|
|
```
|
|
|
|
|
|
|
|
#### jouer un son
|
|
|
|
```bash
|
|
echo -en "\007"
|
|
```
|
|
|