6 lines
111 B
Bash
6 lines
111 B
Bash
|
#!/bin/bash
|
||
|
curl -IL $1 \
|
||
|
| grep Content-Type \
|
||
|
| tail -n 1 \
|
||
|
| grep image && feh $1 || firefox $1
|