Citando la mia risposta per una domanda simile su Ask Ubuntu:
Funzioni in
bash
sono essenzialmente denominati comandi composti (o blocchi di codice). Daman bash
:Compound Commands A compound command is one of the following: ... { list; } list is simply executed in the current shell environment. list must be terminated with a newline or semicolon. This is known as a group command. ... Shell Function Definitions A shell function is an object that is called like a simple command and executes a compound command with a new set of positional parameters. ... [C]ommand is usually a list of commands between { and }, but may be any command listed under Compound Commands above.
Non viene fornito alcun motivo, è solo la sintassi.
Prova con un punto e virgola dopo wc -l
:
numresults(){ ls "$1"/RealignerTargetCreator | wc -l; }
Non utilizzare ls | wc -l
poiché potrebbe darti risultati errati se i nomi dei file contengono nuove righe. Puoi invece utilizzare questa funzione:
numresults() { find "$1" -mindepth 1 -printf '.' | wc -c; }