read Name?" Enter Full name "
First= echo $Name | cut -d ' ' -f1
我使用此命令剪切全名,但它会自动打印名字。我不想要的。
我想要一个输出 詹姆斯,这是素数。
答案 0 :(得分:0)
在我使用的shell中(在MacOS上使用bash),以下内容有效。
2^8 * 4 bytes = 1024 bytes
请指定您正在使用的shell。
另外需要注意的是,为了在你的问题中分配变量'First',在bash中你需要用反引号``或$()构造来包围命令,如下所示。
read -p "Enter full name " first last
echo Hi $first, you are the man