Perché quando provo a scrivere una funzione in una riga nel .bashrc
file,
list(){ ls -a }
Ricevo errore?
bash: /home/kasiya/.bashrc: line num: syntax error: unexpected end of file
ma quando lo scrivo su più righe va bene?
list(){
ls -a
}