3 Oca 2006 tarihinde Emre Sevinc dedi ki: > > Daha önce farkinda olmadigim bir durumla karsilastim. > > $ cat deneme.sh > #!/bin/bash > > gibi bir dosyayi calistirmaya kalkinca > > $ ./deneme.sh > -bash: ./deneme.sh: /bin/bash: bad interpreter: Permission denied > ... > > Bunun sebebi ne olabilir?
bir fikir: $ echo -e '#!/bin/bash\necho merhaba' > test.sh $ chmod og+x test.sh $ ./test.sh bash: ./test.sh: /bin/bash: bad interpreter: Permission denied yani temel yetkiler olabilir -- Windows fare, linux klavye gibidir. http://www.bayazit.net/alphan/

