sh bash有用的命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh bash有用的命令相关的知识,希望对你有一定的参考价值。

# encrypt
openssl enc -aes-256-cbc -in /etc/services -out services.dat

# decrypt
openssl enc -aes-256-cbc -d -in services.dat > services.txt
# check if variables is set
if [[ $1 ]]; then
  echo 'variable is set!'
else
  echo 'ERROR: variable is not set!'
fi

以上是关于sh bash有用的命令的主要内容,如果未能解决你的问题,请参考以下文章

sh bash有用的命令

sh 有用的nextflow bash函数

Linux中bash文档翻译

Linux Shell 按Tab键不能补全

linux脚本的第一行有啥作用呢

Linux Shell基础