This question already has answers here:
bash: shortest way to get n-th column of output
(8个答案)
3年前关闭。
我有以下文件:
常规模式是
在bash或python中实现此目标的简单方法是什么。
(8个答案)
3年前关闭。
我有以下文件:
1:01
4:04
7:07
5:05
3:03
常规模式是
<a number>:0<the same number before colon>
。我想除去结肠以及结肠之后的所有东西。这会产生。1
4
7
5
3
在bash或python中实现此目标的简单方法是什么。
最佳答案
嗯,如果这与您的示例完全一样,
awk -F: '{print $1}' file
-F
标志将分隔符设置为:
。 print $1
会在冒号之前询问您想要的东西。关于python - 删除冒号后的数字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41011854/
10-15 05:08