5 lines
40 B
Bash
5 lines
40 B
Bash
|
#!/bin/sh
|
||
|
message ()
|
||
|
{
|
||
|
echo $1 | boxes
|
||
|
}
|