我正在尝试在 Windows 上运行此命令行(我已经安装了 GNU coreutils 8.24)
echo android:versionCode="3267" | cut -d \" -f 2
预期输出:
3267
但是,我收到了错误:
cut: the delimiter must be a single character
有人知道我如何使用 cut 命令来提取3267
吗android:versionCode="3267"
?
答案1
我如何使用从中cut
提取?3267
android:versionCode="3267"
您需要转义第一对"
s:
$ echo android\:versionCode=\"3267\" | cut -d \" -f 2
3267
$
(在 Cywin bash 中测试)