我试图在bash中运行sed命令,但是它总是给我带来错误,我不知道我做错了什么。
这是代码:$sed 's/unix/linux/' geekfile.txt,这是错误消息:bash: s/unix/linux/: No such file or directory.
我尝试添加-i,它告诉我找不到命令。该怎么办呢。下面是我面临的问题的截图:
📷
我习惯于打字
$ cd
在bash中没有参数导航到我的主目录。
然而,由于一些未定的时间,这不再起作用,只是什么也不做。
设置了我的HOME变量:
$ echo $HOME
/home/me
这怎么可能呢?上面写着
If no directory operand is given and the HOME environment variable is set to a non-empty
value, the cd utility shall behave as if the directory named in the HOME environment
variable was speci
我的Linux版本Linux版本2.6.18-164.2.1.el5PAE
也许有些人有脚本(ksh、perl或bash等),可以从Linux系统获取所有信息并显示出来。
例如
cards in the linux machine (type , manufacture , SN etc..)
cpu
memory
disks
devices ....
在linux上向文件输出巨大的文本(约500 KB)时很难做到这一点。文本包含空格、特殊字符和其他.获取错误/bin/sh :参数列表太长
#!/bin/bash
txt="---huge text separated by line and containing special characters---"
echo $txt
或
#!/bin/bash
txt="---huge text separated by line and containing special characters---"
echo $txt >> filename.tx
我有一个模板文件(template.txt):
Hello, $x
Hello, $y
我有一个脚本文件(script.sh):
#!/bin/bash
$x=linux
$y=unix
# I want to include template.txt as a here-doc
如何将template.txt包含为here-doc of script.sh。
因此,当我运行script.sh时,输出应该是:
Hello, linux
Hello, unix
编辑:
我认为replace对我的工作来说是个很好的命令:
$ cat template.txt | replace '$x&
我已经编写了shell脚本,它从输入文件中读取命令并执行命令。我有这样的命令:
cat linux_unit_test_commands | grep "dmesg"
在输入文件中。在执行shell脚本时,我收到下面的错误消息:
cat: |: No such file or directory
cat: grep: No such file or directory
cat: "dmesg": No such file or directory
剧本:
#!/bin/bash
while read line
do
output=`$line
文档页状态(强调地雷)
如果退出状态psql返回0到外壳,如果它正常完成,1如果发生了它自己的致命错误(例如内存不足,文件没有找到),2如果到服务器的连接坏了并且会话没有交互,<#>and 3如果在脚本中发生错误并且变量ON_ERROR_STOP被设置。
然而,我似乎无法导出退出代码3。
bash-4.2$ uname -a
Linux mvpg-centos-76.vagrantup.com 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
b
我想问一下linux中的ftp连接,如何使用终端检查linux中的ftp匿名连接?我使用while循环读取vsftpd.conf文件,就像这样
while read line
do
if [ Anonymous_enable=YES ];
then echo " Accept connection"
elif [ Anonymous_enable=NO ];
then echo "Not Accept"
fi
done<vsftpd.conf
如何使用Bash遍历文本文件的每一行(
使用此脚本:
echo "Start!"
for p in (peptides.txt)
do
echo "${p}"
done
我在屏幕上看到下面的输出:
Start!
./runPep.sh: line 3: syntax error near unexpected token `('
./runPep.sh: line 3: `for p in (peptides.txt)'
(稍后,我想用$p做一些更复杂的事情,而不仅仅是输出到屏幕上。)
环境变量外壳为(来自环境):
SHELL=/bin
我对BASH脚本比较陌生。我希望有人能帮忙。我有两个文件。文件1是包含某些服务器属性的.csv文件。
cmdb_ci_linux_server.csv
"CLS000","csl000","Linux SuSe","9","HP"
"CLS001","cls001","Linux SuSe","9","VMware, Inc."
"CLS002","cls002","Linux Red Hat
我正在尝试在Linux系统上安装VirtualBox。当运行安装程序时,我遇到一个错误,因为这个系统上没有bzip2:
# bash -i VirtualBox-5.2.16-123759-Linux_x86.run
Verifying archive integrity... All good.
Uncompressing VirtualBox for Linux installation.............
VirtualBox Version 5.2.16 r123759 (2018-07-16T15:17:42Z) installer
Removing previous ins
我正在linux中运行matlab。在matlab中运行脚本时,我会得到以下错误。这里,RayMet_012007.ray_paths是位于自定义目录中的输入。
/bin/bash: line 0: type: RayMet_012007.ray_paths: not found
/bin/bash: line 0: type: RayMet_00.ray_paths: not found
Undefined function or variable 'AD'.
我找不出问题。剧本起作用了。另外,matlab安装在自定义目录中。
http://pastebin.com/CRSP
正在尝试编写ansible playbook以在计算机上安装snowsql。获取以下错误:
line 1: syntax error near unexpected token `newline'\n/bin/snowsql-1.2.0-linux_x86_64.bash: line 1: `<?xml version=\"1.0\" encoding=\"UTF-8\"?>'"
尝试手动运行snowsql-1.2.7-linux_x86_64.bash,但出现错误:
ec2-user@ip-xx-xx-xx-xx ~]$ b
我试着执行以下几行-
sh """
#!/bin/bash
cd ${WORKSPACE}
cat << EOF > build.sh
#!/bin/bash
mkdir wsbuildlinux
cd wsbuildlinux
cmake3 ../../wiresharkbuild_linux
make
EOF
chmod 755 build.sh
# run container and build wire
我有两个系统,一个是rhel4,另一个是rhel6。在编译过程中,我想相应地区分和编译。
我的方法:
在rhel5机中
-bash-4.1$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.5
在rhel4机中
-bash-3.00$ cat /etc/redhat-release
Red Hat Enterprise Linux AS release 4
所以我想用这样的东西-
OSVERSION = cat /etc/redhat-release | cut -d "." -f 1 |
我需要一个linux bash脚本来循环文件夹中的所有文件,并检查其中是否有一个字符串,改变他们的另一个字符串。例如,我们检查file contanis是否为AAAA,然后用CCCC替换BBBB,如果没有AAAA,我们将DDDD改为EEEE。
我写了一些代码,但我不确定它们是否能正常工作:
#!/bin/bash
PATH = /path/to/files/* # files has no extension
for file in $PATH; do
if grep -q "AAAA" $file; then
replace "BBBB