Δημοσιεύτηκε: 06 Μαρ 2011, 12:59
Αν και δεν είναι το καταλληλο μέρος...θα θελα να ρωτήσω σε τι περιβάλλον μπορώ να γραψω bash προγραμματα?Πρέπει να κατεβάσω τπτ απο το Ιντερνετ?Είμαι εντελώς αρχάριος στ θέμα αυτο...Π.χ. για να τρέξω ενα στοιχειώδες προγραμμα
#!/bin/bash
# all scripts start like this
#This is a comment
#will give 11 arguments to this program
# a b c d e f g h i j k
echo Number of input parameters = $# # 11
echo Program Name = $0 # ./parameters
echo Other Parameters = $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11
#Other Parameters = a b c d e f g h i a0 a1
echo Other Parameters = $1 $2 $3 $4 $5 $6 $7 $8 $9 ${10} ${11}
#Other Parameters = a b c d e f g h i j k
echo All Arguments = $*
#All Arguments = a b c d e f g h i j k
Ευχαριστώ πολύ και συγνώμη για τν ταλαιπωρία
#!/bin/bash
# all scripts start like this
#This is a comment
#will give 11 arguments to this program
# a b c d e f g h i j k
echo Number of input parameters = $# # 11
echo Program Name = $0 # ./parameters
echo Other Parameters = $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11
#Other Parameters = a b c d e f g h i a0 a1
echo Other Parameters = $1 $2 $3 $4 $5 $6 $7 $8 $9 ${10} ${11}
#Other Parameters = a b c d e f g h i j k
echo All Arguments = $*
#All Arguments = a b c d e f g h i j k
Ευχαριστώ πολύ και συγνώμη για τν ταλαιπωρία