12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
$> ./last_word "FOR PONY" | cat -e
|
|
PONY$
|
|
$> ./last_word "this ... is sparta, then again, maybe not" | cat -e
|
|
not$
|
|
$> ./last_word " " | cat -e
|
|
$
|
|
$> ./last_word "a" "b" | cat -e
|
|
$
|
|
$> ./last_word " lorem,ipsum " | cat -e
|
|
lorem,ipsum$
|
|
$>
|