9 lines
65 B
Bash
9 lines
65 B
Bash
#!/bin/bash
|
|
|
|
bail_out()
|
|
#Exit code
|
|
{
|
|
echo "Exiting...."
|
|
exit 0
|
|
}
|