我目前正在学习 linux 课程。我几乎必须自学。我已经编写了这个脚本来生成基于参数的日期格式。即(./script.sh 一)。我在让这个脚本做到这一点时遇到问题。我认为我有问题。任何帮助将不胜感激。这是脚本:
#!/bin/bash
if [ $1="one" ]
then
date +%m-%d-%y
elif [ $2="two" ]
then
date +%d-%m-%y
elif [ $3="three" ]
then
date +%A,%B-%d,%Y
elif [ $4="four" ]
then
date +%s
elif [ $5="five" ]
then
fi