Ho provato a creare uno script echo
inserendo il contenuto in un file, invece di aprirlo con un editor
echo -e "#!/bin/bash \n /usr/bin/command args" > .scripts/command
L' output :
bash:! / bin / bash: evento non trovato
Ho isolato questo strano comportamento al botto .
$ echo !
!
$ echo "!"
bash: !: event not found
$ echo \#!
#!
$ echo \#!/bin/bash
bash: !/bin/bash: event not found
- Perché il botto sta causando questo?
- Quali sono questi "eventi" a cui si riferisce bash?
- Come posso superare questo problema e stampare "#! / Bin / bash" sullo schermo o sul mio file?