什么是ADD X9, X6, #8 // I understand this is X9 = A + 8, not sure what the value of the array would be here
ADD X10, X7, #16 // Same idea
STUR X1, [X6, #0] // I believe this "Stores" the value at X1 into A[0]?
LDUR X8, [X10,#0] // This "stores" the value at ?X10[0]? into X8?
LDUR X5, [X9, #0] // This "stores" the value at ?X9[0]? into X5?
ADD X0, X8, X5 // F = X8 + X5
?
/usr/local/Cellar/coreutils/8.31/bin/g[
是一个奇数文件名。
它显然是由homebrew coreutils公式安装的,但我找不到有关它的任何文档。
答案 0 :(得分:1)
在安装coreutils
时有一条评论:
Commands also provided by macOS have been installed with the prefix "g".
以前[
的现在应该是g[
。
[
是文件的奇数名称,但这是重要的Shell功能。有关详细信息,请参见man \[
。