10 lines
81 B
Bash
10 lines
81 B
Bash
#! /bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
source myfunctions.sh
|
|
|
|
|
|
myerror 42 "check \$? var"
|