5 lines
113 B
Bash
5 lines
113 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "your name is $USER"
|
||
|
echo "your home directory is $HOME"
|
||
|
echo "your shells path is $ShellsPath"
|