En bash, vous pouvez utiliser ce qui suit pour limiter la chaîne, dans ce cas, de l'index 0 à l'index 17.
$ var="this is a another string"
$ echo ${var:0:17}
this is a another
Utilisation d'awk, par colonnes :
$ awk '{print $1, $2, $3, $4}' file
ou avec sed :
sed -r '[email protected]^(\S+\s+\S+\s+\S+\s+\S+).*@\[email protected]' file
ou par longueur en utilisant cut :
$ cut -c 1-23 file