linux-tutorial/codes/shell/脚本函数/使用库函数.sh

9 lines
125 B
Bash
Raw Normal View History

2019-10-29 18:22:19 +08:00
#!/usr/bin/env bash
2019-05-10 11:17:57 +08:00
#using a library file the wrong way
2019-10-29 18:22:19 +08:00
../脚本库.sh
2019-05-10 11:17:57 +08:00
result=`addem 10 15`
echo "The result is $result"