Using this post as a starting point I am running the following in bash:
seq 1 5 | xargs -d $'
' sh -c 'for arg do echo $arg; done'
Expected output
1
2
3
4
5
Actual output
2
3
4
5
i.e. is missing the first of the intended arguments.
Am probably being a tool, but wondering why this is.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…