- How do you subtract 8 from 25 using shell scripting?
- What is wrong with the following code? And how can you fix it?
$ rm my file
- What is the problem with the following code?
#!/bin/bash
a=(( 8 + 4 ))
echo $a
$ rm my file
#!/bin/bash
a=(( 8 + 4 ))
echo $a