> Potreboval bych necim nahradit jeden vyraz ve scriptu (bash) > > TRIM_PARAM=`expr substr $ACT_PARAM 1 \`expr length $ACT_VOL\`` A co takto: TRIM_PARAM=`echo $ACT_PARAM | cut -c 1-${#ACT_VOL}` Jediny problem, ze ${#COSI} je asi specialita bash-u. BranoZ