Si vous ne voulez pas recompiler votre noyau pour obtenir des lignes plus longues, vous pouvez écrire un wrapper :
#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "usage: ${0##*/} script [args ...]"
exit
fi
# we're going to expand a variable *unquoted* to use word splitting, but
# we don't want to have path expansion effects, so turn that off
set -f
shebang=$(head -1 "$1")
if [[ $shebang == '#!'* ]]; then
interp=( ${shebang#\#!} ) # use an array in case a argument is there too
else
interp=( /bin/sh )
fi
# now run it
exec "${interp[@]}" "[email protected]"
puis exécutez le script comme :wrapper.sh script.sh
Limité à 127 caractères sur 99,9 % des systèmes en raison de la limite de temps de compilation du noyau.
Il est limité dans le noyau par BINPRM_BUF_SIZE
, mis en include/linux/binfmts.h
.