Linux shell 脚本中的“错误替换”

问题描述 投票:0回答:2
# !/bin/sh
echo "Enter file name:"
read fname
set ${ls -la $fname}
echo "The size of test.sh is $5 byte"
exit 0

我想编写一个可以在 linux shell 脚本中使用“set”命令打印文件大小的代码,所以我使用 ls -la 但它不起作用,我的终端只是在第 4 行显示“错误替换”。有任何帮助请:)

shell scripting
2个回答
1
投票

我建议尝试以下方法:

# !/bin/sh
echo "Enter file name:"
read fname
SIZE=$(ls -l "${fname}" |awk '{print $5}')
echo "The size of ${fname} is ${SIZE} bytes"
exit 0

SIZE
变量将包含读取文件名的大小。请注意,
ls -al
ls -l
类似,但它还显示隐藏文件(以“.”开头的文件)。

使用

set
定义变量并不是真正的最佳实践。 这里有一个关于set使用的建议


-1
投票

跟随并纠正castel我宁愿说:

# !/bin/sh
read -p "Enter file name: " fname
SIZE=$(ls -l "$fname" | awk '{print $5}')
echo "The size of $fname is $SIZE bytes"
© www.soinside.com 2019 - 2024. All rights reserved.