shell script
Named Parameters In Bash
Sometimes we need to pass multiple arguments to a shell script and often we don’t need to pass all arguments to our script every time, that’s where named parameters comes in. With named parameters we can pass something like “–school hard knocks” to our script. However …