|< 1 2 >| | 15 Einträge, 2 Seiten |
1
2
3
4
5
6
7
#! /bin/tcsh -f
NEWVAR=$1
NEWVAR=sed -e 's/[^=]*=//'
echo "Ausgewählter Score: $NEWVAR";
exit
1
2
3
4
~ 2> shell_test sc=0.55
NEWVAR=sc=0.55: Befehl nicht gefunden.
NEWVAR=sed: Befehl nicht gefunden.
NEWVAR: Undefinierte Variable.
setenv VAR value
set VAR = value
1
2
3
4
5
6
7
#! /bin/tcsh -f
set NEWVAR=$1
set NEWVAR=sed -e 's/[^=]*=//'
echo "Ausgewählter Score: $NEWVAR";
exit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set variable = sc
# Variante 1
echo $variable | grep -q ^sc
if ($? == 0) then
echo yes
else
echo no
endif
# Variante 2
switch ("$variable")
case "sc*":
echo yes
breaksw
default:
no
endsw
|< 1 2 >| | 15 Einträge, 2 Seiten |