shell生成uuid shell生成时间

在Linux系统中,可以使用uuidgen命令来生成UUID。在终端中输入以下命令即可生成UUID:+

shell生成uuid

生成uuid
UID=$(uuidgen)
68222463-5326-4ed8-bd28-a090683d4b1f
# 生成无横杠uuid
UUID=$(uuidgen |sed 's/-//g')
9305690e1a3e40ae9a17802b47d862cf
# 生成大写uuid
UUID=$(uuidgen | tr '[:lower:]' '[:upper:]')
E2F95C40-C484-47B6-8586-C95679A6602A

# 生成大写无横杠uuid
UUID=$(uuidgen | tr '[:lower:]' '[:upper:]'|sed 's/-//g')
6FCF215FF2944DDA89CE1639D087C163
 

命令解释

uuidgen命令用于生成一个UUID。
tr '[:lower:]' '[:upper:]'命令将UUID中的所有小写字母转换为大写字母。
sed 's/-//g'命令使用正则表达式将UUID中的所有短横线-删除。

shell生成 时间

nowDate=$(date +'%Y%m%d%H%M%S')

uuidgen: command not found怎么解决

在Debian/Ubuntu系统上:

sudo apt-get update
sudo apt-get install uuid-runtime

在CentOS/RHEL系统上:

sudo yum install uuid-runtime

安装完成后,再次使用uuidgen命令即可成功生成UUID。

root@shaojs:~# uuidgen

68222463-5326-4ed8-bd28-a090683d4b1f

你可能感兴趣的:(linux,运维,服务器)