6 lines
60 B
Text
6 lines
60 B
Text
|
#!/bin/bash
|
||
|
|
||
|
LEN=${1:-72}
|
||
|
|
||
|
pbpaste | fold -sw $LEN | pbcopy
|