Files
oam/snippets/cut.sh
2024-08-28 18:33:04 +02:00

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'