14 lines
161 B
Bash
Executable File
14 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Övning 1, laboration 2
|
|
# Jack-Benny Persson
|
|
# LX13
|
|
|
|
printf "Hej $USER, du befinner dig i $PWD\n";
|
|
|
|
if [ $? -ne 0 ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|