script sh - Shell/Batch - Programmation
Marsh Posté le 27-09-2003 à 17:50:40
tu peux dire ce que tu veux faire ? parce quand les deux cas, ça renvoie rien...
Marsh Posté le 27-09-2003 à 17:56:26
Taz a écrit : tu peux dire ce que tu veux faire ? parce quand les deux cas, ça renvoie rien... |
c cense matcher 10 ou -10... tu remplace donc $nb par -10
Marsh Posté le 27-09-2003 à 18:12:48
Taz a écrit : heink ? tu sais à quoi sert expr ? |
oui je sais a quoi sert expr... si tu regarde bien en bas du man ca peut servir a matcher les regexp... (evidemment qu'avec grep j'irai plus vite...:ange
donc
bash-2.05$ expr "10" : "\(\-\{0,1\}[0-9]*\)"
10
bash-2.05$ expr "abc" : "\(\-\{0,1\}[0-9]*\)"
bash-2.05$
mais:
bash-2.05$ expr "10" : "\(\-\{0,1\}[0-9]\+\)"
bash-2.05$
mais bon ma question porte pas trop sur expr mais plus sur pourkoi le + marche pas...
Marsh Posté le 27-09-2003 à 18:35:26
Ben tu l'échappe avec "\" donc tu lui enlève sa signification spéciale.
"\(\-\{0,1\}[0-9]+\)" devrait être bon.
Marsh Posté le 27-09-2003 à 18:36:20
kfman a écrit : Ben tu l'échappe avec \ |
meme sans...
Marsh Posté le 27-09-2003 à 18:38:08
Suri a écrit : |
"\(\-\{0,1\}[0-9]+\)"
Le "-" au début, tu peux simplifier:
"\(\-?[0-9]+\)"
Marsh Posté le 27-09-2003 à 18:40:42
Les \( \) chais pas si c'est utile aussi donc finalement:
"\-?[0-9]+"
Marsh Posté le 27-09-2003 à 18:42:01
kfman a écrit : |
ben ecoute ca marche pas non plus ca... j'comprend vraiment rien
j'ai contourne mon probleme plus loin mais j'en ai marre de tjs devoir contourner les problemes
bash-2.05$ expr "-10" : "\(\-\{0,1\}[0-9]*\)"
-10
bash-2.05$ expr "-10" : "\(\-?[0-9]*\)"
bash-2.05$
Marsh Posté le 27-09-2003 à 18:43:28
kfman a écrit : Les \( \) chais pas si c'est utile aussi donc finalement: |
sisi.. t'as un shell sous les yeux?
Marsh Posté le 27-09-2003 à 18:46:55
Suri a écrit : |
heu non,
mais si t'as un serveur ssh ou telnet pkoi pas
Marsh Posté le 27-09-2003 à 18:47:41
kfman a écrit : |
non pas la...
Marsh Posté le 27-09-2003 à 18:49:29
Sinon essaie de remplacer tes guillements par des simples quotes autour de la regex.
Marsh Posté le 27-09-2003 à 18:53:55
kfman a écrit : Sinon essaie de remplacer tes guillements par des simples quotes autour de la regex. |
nada
Marsh Posté le 27-09-2003 à 18:59:16
Et comme ça ?
expr -10 : '\(\-?[0-9]+\)'
ou
expr '-10' : '\(\-?[0-9]+\)'
Sinon: "throw you pc through window"
Marsh Posté le 27-09-2003 à 19:00:58
kfman a écrit : Et comme ça ? |
bon j'abandonne ca me gonfle
Marsh Posté le 27-09-2003 à 19:02:11
tain je vois pas ce qui merde
tu peux faire cut&paste du man stp ?
Marsh Posté le 27-09-2003 à 19:03:58
NAME
expr - evaluate expression
SYNOPSIS
expr expression
DESCRIPTION
The expr utility evaluates expression and writes the result on standard
output.
All operators are separate arguments to the expr utility. Characters
special to the command interpreter must be escaped.
Operators are listed below in order of increasing precedence. Operators
with equal precedence are grouped within { } symbols.
expr1 | expr2
Returns the evaluation of expr1 if it is neither an empty string
nor zero; otherwise, returns the evaluation of expr2.
expr1 & expr2
Returns the evaluation of expr1 if neither expression evaluates
to an empty string or zero; otherwise, returns zero.
expr1 {=, >, >=, <, <=, !=} expr2
Returns the results of integer comparison if both arguments are
integers; otherwise, returns the results of string comparison us-
ing the locale-specific collation sequence. The result of each
comparison is 1 if the specified relation is true, or 0 if the
relation is false.
expr1 {+, -} expr2
Returns the results of addition or subtraction of integer-valued
arguments.
expr1 {*, /, %} expr2
Returns the results of multiplication, integer division, or re-
mainder of integer-valued arguments.
expr1 : expr2
The ``:'' operator matches expr1 against expr2, which must be a
regular expression. The regular expression is anchored to the
beginning of the string with an implicit ``^''.
If the match succeeds and the pattern contains at least one regu-
lar expression subexpression ``\(...\)'', the string correspond-ing to ``\1'' is returned; otherwise the matching operator re-
turns the number of characters matched. If the match fails and
the pattern contains a regular expression subexpression the null
string is returned; otherwise 0.
( expr )
Parentheses are used for grouping in the usual manner.
Operator precedence (from highest to lowest):
1. parentheses
2. ``:''
3. ``*'', ``/'', and ``%''
4. ``+'' and ``-''
5. compare operators
6. ``&''
7. ``|''
EXIT STATUS
The expr utility exits with one of the following values:
0 the expression is neither an empty string nor 0.
1 the expression is an empty string or 0.
2 the expression is invalid.
>2 an error occurred (such as memory allocation failure).
EXAMPLES
1. The following example adds one to the variable a.
a=`expr $a + 1`
2. The following example returns zero, due to deduction having higher
precendence than '&' operator.
expr 1 '&' 1 - 1
3. The following example returns the filename portion of a pathname
stored in variable a.
expr /$a : '.*/\(.*\)'
4. The following example returns the number of characters in variable
a.
expr $a : '.*'
STANDARDS
The expr utility conforms to IEEE Std 1003.2 (``POSIX.2'').
AUTHORS
Original implementation was written by J.T. Conklin <jtc@netbsd.org>. It
was rewritten for NetBSD 1.6 by
Jaromir Dolecek <jdolecek@netbsd.org>.COMPATIBILITY
This implementation of expr internally uses 64 bit represenation of inte-
gers and checks for over- and underflows. It also treats / (division
mark) and option '--' correctly depending upon context.
expr on other systems (including NetBSD up to and including NetBSD 1.5)
might be not so graceful. Arithmetic results might be arbitrarily limited
on such systems, most commonly to 32 bit quantities. This means such ex-
pr can only process values between -2147483648 and +2147483647.
On other systems, expr might also not work correctly for regular expres-
sions where either side contains single forward slash, like this:
expr / : '.*/\(.*\)'
If this is the case, you might use // (double forward slash) to avoid
abiquity with the division operator:
expr "//$a" : '.*/\(.*\)'
According to IEEE Std 1003.2 (``POSIX.2''), expr has to recognize special
option '--', treat it as an end of command line options and ignore it.
Some expr implementations don't recognize it at all, others might ignore
it even in cases where doing so results in syntax error. There should be
same result for both following examples, but it might not always be:
1. expr -- : .
2. expr -- -- : .
Althrough NetBSD expr handles both cases correctly, you should not depend
on this behaviour for portability reasons and avoid passing bare '--' as
first argument.
NetBSD 1.6_BETA5 September 18, 2000 2
Marsh Posté le 27-09-2003 à 19:20:48
bon sinon j'ai une autre question qui a completement rien a voir (enfin c du sh qd meme)
est ce qu'on peut acceder directement a un argument en connaissant sa position?
ex: ./script.sh arg1 arg2 arg3
je voudrais acceder directement a arg2 par ex... paske comme par hasard, arg2 c une chaine vide "" et un
for arg in $@; do
echo "$arg";
done;
va me sortir que arg1 et arg3
Marsh Posté le 27-09-2003 à 19:29:06
kfman a écrit : $# : nombre d'arguments |
j'allais dire une connerie mais $11 $25 $512 ca marche aussi en fait.. je croyais que non m
merci
Marsh Posté le 27-09-2003 à 19:32:20
salete de ^%&$#@*&@$
comment on incremente une variable sans expr?
edit:je sature trop la...
Marsh Posté le 27-09-2003 à 19:38:46
kfman a écrit : Ca marche $var = $var + 1 ? |
ben non justement
en fait vu que je connais pas a l'avance le nombre d'argument que je passe a mon script je sais aps trop comment acceder a $1 $2 etc...
edit: non ca c bon test="\$$nb"
edit: non c pas bon
Marsh Posté le 27-09-2003 à 19:43:20
sinon y'a $* liste de tout les arguments,
tu peux donc faire un for in `$*`
Edit essaie ça: pour l'incrémentation $var = `$var + 1`
Marsh Posté le 27-09-2003 à 19:45:31
kfman a écrit : sinon y'a $* liste de tout les arguments, |
l'IFS (separateur) c'est 'l'espace par defaut... et j'sais pas pkoi il me prend pas ma chaine vide... par contre si je met IFS=";" par ex ben la ca me prend ma chaine vide.. mais mes autres arg se font spliter par ; apres
Marsh Posté le 27-09-2003 à 19:49:55
kfman a écrit : Pour forcer une chaine vide écrit ''. |
ben oui...
Marsh Posté le 27-09-2003 à 20:01:38
j'ai trouve
$>./script arg1 "" arg3
arg3
arg1
$>
nb=$#
while [ $nb -gt 0 ]; do
test="\$$nb";
test=`eval echo "$test"`;
echo "$test";
nb=`expr "$nb" - 1`;
done;
Marsh Posté le 27-09-2003 à 20:02:16
ct le eval le mechant!
par contre j'utilise expr.. et jsuis pas sur d'avoir le droit
Marsh Posté le 01-10-2003 à 00:29:29
Bon, par rapport a mon histoire de "+" qui marchait pas... en fait c tout simplement que "+" fait partie des regexp etendues et que eval ce boulet ne gere pas les regexp etendues...
voila voila
Marsh Posté le 01-10-2003 à 00:56:39
ReplyMarsh Posté le 01-10-2003 à 08:01:18
the real moins moins a écrit : tjs à faire ta bdd en sh? |
nan ca ct juste une soirée
Marsh Posté le 27-09-2003 à 17:31:41
pkoi ca, ca marche:
taist=`expr "$nb" : "\(\-\{0,1\}[0-9]*\)"`;
et pas ca:
taist=`expr "$nb" : "\(\-\{0,1\}[0-9]\+\)"`;
(etoile remplacee par un + pour que le chiffre soit obligatoire...
c cense matcher les nombres genre 10 et -10...
merci
---------------
Suri.morkitu.org : Balades au coeur de la ville...