mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
5 lines
111 B
Bash
5 lines
111 B
Bash
#!/usr/bin/env sh
|
|
|
|
# limit strings to some length
|
|
echo 'some string longer than 20 characters' | cut -c '1-20'
|