Simple CLI for Logpasta, just run your_command | logpasta
.
- Via Homebrew:
brew tap ripexz/tap && brew install logpasta
- Via Go:
go get github.com/ripexz/logpasta
- Download binary and put it in your
$PATH
any_command | logpasta [flags]
logpasta [flags] any string at all
logpasta [flags] < your_file
To see the current CLI version, run logpasta version
You can override the default configuration by passing flags:
-u
-string
- override default logpasta URL (default:https://www.logpasta.com
)-s
-bool
- suppress output, unless the request fails (default:true
)-d
-bool
- output debug information (default:false
)-t
-int
- http client timeout in seconds (default:5
)-c
-bool
- copy the log url to clipboard (default:false
)
You can also set up environmental variables to make the job easier, however flags will override these:
LOGPASTA_URL
-string
- see-u
flagLOGPASTA_SILENT
-bool
- see-s
flagLOGPASTA_DEBUG
-bool
- see-d
flagLOGPASTA_TIMEOUT
-int
- see-t
flagLOGPASTA_COPY
-bool
- see-c
flag