lspci -s 0a.00.1
这回来了
0a.00.1 usb controller some text device 4dc9
我希望得到最后4个字符内联
lspci -s 0a.00.1 | some command to give me the last 4 characters.
解决方法:
如何使用-c开关尾部.例如,要获取“hello”的最后4个字符:
echo "hello" | tail -c 5
ello
请注意,我使用了5(4 1),因为echo添加了换行符.正如下面的Brad Koch所建议的那样,使用echo -n来防止添加换行符.