1
我想使用cut
來得到字符串的一部分。這裏有一個虛擬的例子:如何使用`cut`刪除最後一個CR字符
$ echo "foobar" | cut -c1-3 | hexdump -C
00000000 66 6f 6f 0a |foo.|
00000004
注意到\n
char在最後添加。
在這種情況下,沒有一點用cut
刪除最後一個字符如下:
echo "foobar" | cut -c1-3 | rev | cut -c 1- | rev
我仍然會得到這額外和不必要的字符,我想避免使用額外的命令,例如:
shasum file | cut -c1-16 | perl -pe chomp