【问题标题】:DD script and operand expected errør [duplicate]DD 脚本和操作数预期错误 [重复]
【发布时间】:2019-12-10 12:36:03
【问题描述】:

我正在尝试实现一行代码,以防止用户擦除主机闪存驱动器(实际上是 110 GB 以下的任何内容)

#!/bin/bash
RED='\033[0;31m'
NC='\033[0m'
END='\033[0m'
FLASH='\e[5m'
dt=`date '+%m/%d/%Y_%H:%M:%S'`
echo -e "STILL BE CAREFUL!! SIZE CHECK IS STILL NON-FUNCTIONAL"
echo "Inspect the drive for multiple boot/storage/recovery partitions. Check out the README.odt for reference photos."
sudo gnome-disks
echo "Showing list of drives: "
sudo fdisk -l | grep -i "Disk /"
echo "What drive are you attempting to wipe? Do not include /dev/"
read drive
size= sudo fdisk -l | grep -i "Disk /dev/$drive" | awk -F" " {'print $3'}
printf %.0f $size
if (( $size <= 110 ))
then
        echo -e "$size"
        echo -e "${RED}${FLASH}Error: You are trying to wipe a disk that is less than 110 GB. There's a high chance this is the host flashdrive. If you are sure this is the correct drive use\n ${END}${RED}sudo dd if=/dev/urandom of=/dev/<drive here> bs=1M status=progress${NC}"
else
        echo -e "${RED}Now wiping drive /dev/$drive!${END}"
        sudo dd if=/dev/urandom of=/dev/$drive bs=1M status=progress
        echo -e "${RED}${FLASH}Wiping has completed at $dt !!!${END}"
echo "Drive in question should only have one main partition. See README.odt for reference."
sudo gnome-disks

fi
echo "Please enter Ctrl + C to exit!"
sleep 10000

如果我尝试擦除 8.7 GB 的 sda,我希望它会抛出我创建的错误。相反,它表示预期的操作数错误,然后继续擦除测试闪存驱动器。

【问题讨论】:

  • 显然是错误的 size= sudo fdisk -l | grep -i "Disk /dev/$drive" | awk -F" " {'print $3'} ,它完全跳出来了...
  • 顺便说一句,如果您使用颜色代码更改变量以具有 文字代码,而不是生成它们的反斜杠转义序列,您将能够停止使用-e 参数到 echo。 f/e, red=$'\033[0;31m'; $'' 让 shell 在解析时处理反斜杠转义序列,而不是等待 echo 稍后再做。

标签: linux bash scripting linux-mint


【解决方案1】:

您的变量size 始终等于零(实际上几乎整个脚本都未设置)。我假设您的意思是在该分配中的等号之后立即有一个反引号,而在该行的末尾有另一个。 但不要使用反引号。这是一个例子。它们很容易被遗漏或误读为单引号,并且很难嵌套等。

目前的行说“将size 的值设置为null 并将其only 传递到sudo 的环境中”。

由于size 未设置,因此if 语句出现“操作数预期”错误,printf 也输出“0”。

将该行更改为:

size=$(sudo fdisk -l | awk -F " " -v drive=$drive 'BEGIN {IGNORECASE = 1} $0 ~ "/Disk /dev/" drive {print $3}')

请注意,我还将单引号移到了 AWK 命令中的正确位置,并将 grep 函数移到了 AWK 命令中。

以下是其他一些更正的行:

dt=$(date '+%m/%d/%Y_%H:%M:%S')
printf '%.0f\n' "$size"

你可以省略双括号内的美元符号:

if (( size <= 110 ))

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-05-24
    • 2017-10-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多