Obrigado pela ajuda Maik, funcionou do jeito que queria. On Wednesday, 15 August 2018, 08:37:23 GMT-3, Maik Alberto ***@hotmail.com [shell-script] <shell-***@yahoogrupos.com.br> wrote:
Â
soa $1 $2
#!/bin/bash# Verifica a versão do SOA
function soa {if [[ "$2" == "f" ]]; thendig @f1.f.dns.br com.br SOA +short | cut -d " " -f 3elseecho "Erro!"echo "cifrão1=$1, cifrão2=$2"fi}    case $1 in        -h)        soa $1 $2        ;;esac
Caso queira descartar um argumento.
#!/bin/bash# Verifica a versão do SOA
function soa {if [[ "$1" == "f" ]]; thendig @f1.f.dns.br com.br SOA +short | cut -d " " -f 3elseecho "Erro!"fi}    case $1 in        -h)        soa $2        ;;esac
#Acho que é isso
De: shell-***@yahoogrupos.com.br <shell-***@yahoogrupos.com.br> em nome de ***@yahoo.com [shell-script] <shell-***@yahoogrupos.com.br>
Enviado: terça-feira, 14 de agosto de 2018 17:34
Para: shell-***@yahoogrupos.com.br
Assunto: Re: [shell-script] Função em shell script Â
Segue o script funcionando. Aqui eu pego o valor de $2 e atribuo a VAR, o que resolve:
#!/bin/bash
# Verifica a versão do SOA
var=$2;
function soa {
if [[ $var == "f" ]]; then
dig @f1.f.dns.br com.br SOA +short | cut -d " " -f 3
else
echo "Erro!"
fi
}
    case $1 in
        -h)
        soa
        ;;
esac
Segue como eu queria que fosse usando o próprio $2, coloquei entre aspas como Alfred mencionou mas não deu certo. :
#!/bin/bash
# Verifica a versão do SOA
function soa {
if [[ "$2" == "f" ]]; then
dig @f1.f.dns.br com.br SOA +short | cut -d " " -f 3
else
echo "Erro!"
echo "cifrão1=$1, cifrão2=$2"
fi
}
    case $1 in
        -h)
        soa
        ;;
esac
---Em shell-***@yahoogrupos.com.br, <***@...> escreveu:
Passe os parâmetros delimitados por aspas
On Tue, Aug 14, 2018 at 1:20 PM Maik Alberto ***@... [shell-script] <shell-***@...> wrote:
Â
Talvez enviar o codigo fique mais fácil para o pessoal ajudar.
funcao(){
echo $1
echo $2
}
funcao a b
De:shell-***@... <shell-***@...> em nome ***@... [shell-script] <shell-***@...>
Enviado: terça-feira, 14 de agosto de 2018 13:10
Para: shell-***@...
Assunto: [shell-script] Função em shell scriptÂ
Â
Olá a todos,
Eu tenho um script que consulta o SOA de algumas lâminas DNS, e uma das minhas funções é fazer essa pesquisa, para fazer a pesquisa eu uso parâmetros, sendo $1 a opção de consulta e $2 a lâmina DNS.
A função em si não reconhece o valor de $2, mas reconhece o valor de $1, uma alternativa foi passar o valor de $2 para uma variável, mas eu quero passar $2 e não uma variável, será que poderiam me ajudar. Desde já obrigado.
Â
#yiv9017408353 #yiv9017408353 -- #yiv9017408353ygrp-mkp {border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}#yiv9017408353 #yiv9017408353ygrp-mkp hr {border:1px solid #d8d8d8;}#yiv9017408353 #yiv9017408353ygrp-mkp #yiv9017408353hd {color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}#yiv9017408353 #yiv9017408353ygrp-mkp #yiv9017408353ads {margin-bottom:10px;}#yiv9017408353 #yiv9017408353ygrp-mkp .yiv9017408353ad {padding:0 0;}#yiv9017408353 #yiv9017408353ygrp-mkp .yiv9017408353ad p {margin:0;}#yiv9017408353 #yiv9017408353ygrp-mkp .yiv9017408353ad a {color:#0000ff;text-decoration:none;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ygrp-lc {font-family:Arial;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ygrp-lc #yiv9017408353hd {margin:10px 0px;font-weight:700;font-size:78%;line-height:122%;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ygrp-lc .yiv9017408353ad {margin-bottom:10px;padding:0 0;}#yiv9017408353 #yiv9017408353actions {font-family:Verdana;font-size:11px;padding:10px 0;}#yiv9017408353 #yiv9017408353activity {background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}#yiv9017408353 #yiv9017408353activity span {font-weight:700;}#yiv9017408353 #yiv9017408353activity span:first-child {text-transform:uppercase;}#yiv9017408353 #yiv9017408353activity span a {color:#5085b6;text-decoration:none;}#yiv9017408353 #yiv9017408353activity span span {color:#ff7900;}#yiv9017408353 #yiv9017408353activity span .yiv9017408353underline {text-decoration:underline;}#yiv9017408353 .yiv9017408353attach {clear:both;display:table;font-family:Arial;font-size:12px;padding:10px 0;width:400px;}#yiv9017408353 .yiv9017408353attach div a {text-decoration:none;}#yiv9017408353 .yiv9017408353attach img {border:none;padding-right:5px;}#yiv9017408353 .yiv9017408353attach label {display:block;margin-bottom:5px;}#yiv9017408353 .yiv9017408353attach label a {text-decoration:none;}#yiv9017408353 blockquote {margin:0 0 0 4px;}#yiv9017408353 .yiv9017408353bold {font-family:Arial;font-size:13px;font-weight:700;}#yiv9017408353 .yiv9017408353bold a {text-decoration:none;}#yiv9017408353 dd.yiv9017408353last p a {font-family:Verdana;font-weight:700;}#yiv9017408353 dd.yiv9017408353last p span {margin-right:10px;font-family:Verdana;font-weight:700;}#yiv9017408353 dd.yiv9017408353last p span.yiv9017408353yshortcuts {margin-right:0;}#yiv9017408353 div.yiv9017408353attach-table div div a {text-decoration:none;}#yiv9017408353 div.yiv9017408353attach-table {width:400px;}#yiv9017408353 div.yiv9017408353file-title a, #yiv9017408353 div.yiv9017408353file-title a:active, #yiv9017408353 div.yiv9017408353file-title a:hover, #yiv9017408353 div.yiv9017408353file-title a:visited {text-decoration:none;}#yiv9017408353 div.yiv9017408353photo-title a, #yiv9017408353 div.yiv9017408353photo-title a:active, #yiv9017408353 div.yiv9017408353photo-title a:hover, #yiv9017408353 div.yiv9017408353photo-title a:visited {text-decoration:none;}#yiv9017408353 div#yiv9017408353ygrp-mlmsg #yiv9017408353ygrp-msg p a span.yiv9017408353yshortcuts {font-family:Verdana;font-size:10px;font-weight:normal;}#yiv9017408353 .yiv9017408353green {color:#628c2a;}#yiv9017408353 .yiv9017408353MsoNormal {margin:0 0 0 0;}#yiv9017408353 o {font-size:0;}#yiv9017408353 #yiv9017408353photos div {float:left;width:72px;}#yiv9017408353 #yiv9017408353photos div div {border:1px solid #666666;min-height:62px;overflow:hidden;width:62px;}#yiv9017408353 #yiv9017408353photos div label {color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}#yiv9017408353 #yiv9017408353reco-category {font-size:77%;}#yiv9017408353 #yiv9017408353reco-desc {font-size:77%;}#yiv9017408353 .yiv9017408353replbq {margin:4px;}#yiv9017408353 #yiv9017408353ygrp-actbar div a:first-child {margin-right:2px;padding-right:5px;}#yiv9017408353 #yiv9017408353ygrp-mlmsg {font-size:13px;font-family:Arial, helvetica, clean, sans-serif;}#yiv9017408353 #yiv9017408353ygrp-mlmsg table {font-size:inherit;font:100%;}#yiv9017408353 #yiv9017408353ygrp-mlmsg select, #yiv9017408353 input, #yiv9017408353 textarea {font:99% Arial, Helvetica, clean, sans-serif;}#yiv9017408353 #yiv9017408353ygrp-mlmsg pre, #yiv9017408353 code {font:115% monospace;}#yiv9017408353 #yiv9017408353ygrp-mlmsg * {line-height:1.22em;}#yiv9017408353 #yiv9017408353ygrp-mlmsg #yiv9017408353logo {padding-bottom:10px;}#yiv9017408353 #yiv9017408353ygrp-msg p a {font-family:Verdana;}#yiv9017408353 #yiv9017408353ygrp-msg p#yiv9017408353attach-count span {color:#1E66AE;font-weight:700;}#yiv9017408353 #yiv9017408353ygrp-reco #yiv9017408353reco-head {color:#ff7900;font-weight:700;}#yiv9017408353 #yiv9017408353ygrp-reco {margin-bottom:20px;padding:0px;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ov li a {font-size:130%;text-decoration:none;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ov li {font-size:77%;list-style-type:square;padding:6px 0;}#yiv9017408353 #yiv9017408353ygrp-sponsor #yiv9017408353ov ul {margin:0;padding:0 0 0 8px;}#yiv9017408353 #yiv9017408353ygrp-text {font-family:Georgia;}#yiv9017408353 #yiv9017408353ygrp-text p {margin:0 0 1em 0;}#yiv9017408353 #yiv9017408353ygrp-text tt {font-size:120%;}#yiv9017408353 #yiv9017408353ygrp-vital ul li:last-child {border-right:none !important;}#yiv9017408353