You are here |
mariocarrion.com | ||
| | | |
www.sethvargo.com
|
|
| | | | Go 1.21 has some awesome new functionality that improves the developer experience and performance. | |
| | | |
cep.dev
|
|
| | | | How nil and empty Go structs tend to behave the same for read operations. | |
| | | |
double-trouble.dev
|
|
| | | | Explore innovative features, including enhanced map and slice operations, structured logging... | |
| | | |
willhaley.com
|
|
| | This is a trivial example, but is meant to demonstrate how you can pipe arguments to a bash function. #!/usr/bin/env bash lowercase() { # Grab input. declare input=${1:-$(</dev/stdin)}; # Use that input to do anything. echo "$input" | tr '[:upper:]' '[:lower:]' } echo "HELLO there, FRIEND!" | lowercase Which outputs the following. hello there, friend! |