8 lines
79 B
Bash
8 lines
79 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
name () {
|
||
|
username=$(whoami)
|
||
|
echo ${username^}
|
||
|
}
|
||
|
|
||
|
name
|