linux-tutorial/codes/shell/脚本函数/使用库函数.sh
2019-10-29 18:22:19 +08:00

9 lines
125 B
Bash

#!/usr/bin/env bash
#using a library file the wrong way
../脚本库.sh
result=`addem 10 15`
echo "The result is $result"