bash では、以下を使用して文字列を制限できます。この場合、インデックス 0 からインデックス 17 までです。
$ var="this is a another string"
$ echo ${var:0:17}
this is a another
列ごとに awk を使用:
$ awk '{print $1, $2, $3, $4}' file
または sed を使用:
sed -r '[email protected]^(\S+\s+\S+\s+\S+\s+\S+).*@\[email protected]' file
またはカットを使用して長さで:
$ cut -c 1-23 file