I am trying to run this command line on Windows (I've installed GNU coreutils 8.24)
echo android:versionCode="3267" | cut -d \" -f 2
Expected output:
3267
However, I am getting error:
cut: the delimiter must be a single character
Anyone know how can I use cut command to extract 3267 from android:versionCode="3267" ?