1
Name:
Ain
2012-11-15 19:28
Hey guys, can you help me write a BASH script that takes the side of a cube as a command line argument and displays the volume of the cube? Thanks in advance.
4
Name:
Anonymous
2012-11-15 20:10
this is some seriously menial shit, I'm just letting you know
5
Name:
Anonymous
2012-11-15 20:13
first one guy asks how to implement sieve of erathostenes. now this.
6
Name:
Anonymous
2012-11-15 20:14
Even Hacker Jews would make fun of
>>1- san's question.
7
Name:
Anonymous
2012-11-15 20:22
#!/usr/local/bin/bash
let result=$1*$1*$1
echo $result
10
Name:
Anonymous
2012-11-15 20:44
>>7-8
let considered harmful. Use arithmetic expressions.