shell-script-pt
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [shell-script] Cálculo de Fatorial


From: Tiago Barcellos Peczenyj
Subject: Re: [shell-script] Cálculo de Fatorial
Date: Wed, 12 Dec 2007 09:56:15 -0200

o erro é esse ?

x.sh: line 8: return: can only `return' from a function or sourced script

Se for, retire esse return na ultima linha ;-)

On 12/12/07, Alan Diones <address@hidden> wrote:
>
> Amigos, estou tendo um problema nesse script, não consigo identificar o
> erro.
>
> #!/bin/bash
> clear
> echo -n "Digite o nº:" ; read N
> let A=1
> while [ $N -gt 0 ] ; do
> let A=A*N
> let N=N-1
> done
> echo $A
> return
>
> [As partes desta mensagem que não continham texto foram removidas]
>
> 
>



-- 
Tiago B Peczenyj
Linux User #405772

http://peczenyj.blogspot.com/
"what does not kill us makes us stronger"


[As partes desta mensagem que não continham texto foram removidas]



reply via email to

[Prev in Thread] Current Thread [Next in Thread]