7 lines
93 B
Bash
7 lines
93 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
printf 'Name: '
|
||
|
read -r nick rest
|
||
|
exec catgirl -n "$nick" -s "$nick" "$@"
|