mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 08:41:36 +00:00
11 lines
152 B
Bash
11 lines
152 B
Bash
#!/bin/env bash
|
|
|
|
incat() {
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: incat <url>"
|
|
return 1
|
|
fi
|
|
|
|
curl "$1" --output - | kitten icat
|
|
}
|