我想通过这个命令安装 gcc 编译器
apt install build-essential
按是后,它要求我插入一些媒体。
Media change: please insert the disc labeled
'Ubuntu 18.04.4 LTS _Bionic Beaver_ - Release amd64 (20200203.1)'
in the drive '/media/cdrom/' and press [Enter]
并且这个提示一次又一次地重复
怎么了?
我想通过这个命令安装 gcc 编译器
apt install build-essential
按是后,它要求我插入一些媒体。
Media change: please insert the disc labeled
'Ubuntu 18.04.4 LTS _Bionic Beaver_ - Release amd64 (20200203.1)'
in the drive '/media/cdrom/' and press [Enter]
并且这个提示一次又一次地重复
怎么了?
对不起这个愚蠢的问题,但我花了一些时间弄清楚!
#! /bin/bash
a=/etc
cd $a
通常,如果我为$a
变量然后分配值cd $a
,它会起作用。但是当我创建一个单独的文件时 - 它没有!
为什么会这样?
#!/bin/bash
dir=/home/john
name="kate"
if [ -d $dir ] && [ -n $name ]; then
echo "The name exists and the folder $dir exists."
else
echo "Fail"
fi
我只是执行了这个命令,它根本不起作用。只有当两个测试都成功时,此命令才应返回 true,否则它将失败。但没有什么是失败的。
为什么?
先感谢您。