Hi I am new in SHELL script. Actually I have a function err() in file abc the files are not with .sh extensions they are simple file but starting with #!/bin/bash
err () {
echo "${1}" >&2
}
Now I am importing it in a different file xyz
source abc
someFunction(){
err "Failed to back up"
}
Is it a right way of importing ?
abcsimply has to be readable (not executable necessarily) and on your PATH to be usable like that. – Jonathan Leffler Dec 11 '12 at 6:43