You are already naked. There is no reason not to follow your heart. ~ Steve Jobs ~
#!/bin/bashfunction re () { local tmp tmp=$1 if [ $tmp -eq 1 ]; then total=1 else re $(($tmp-1)) total=$(($tmp*$total)) fi}read -p "Data=" VARre $VARecho "$VAR!=$total"
Post a Comment
No comments:
Post a Comment