当前位置:网站首页>命令输出给变量

命令输出给变量

2022-08-11 05:33:00 macob

有两种方法可以将命令输出赋给变量:
    反引号字符    `
        testing='date'
    $()格式
        testing=$(date)


#!/bin/bash
# copy the /usr/bin directory listing to a log file
today=$(date +%y%m%d%k%M%S)
ls /usr/bin -al > log.$today

原网站

版权声明
本文为[macob]所创,转载请带上原文链接,感谢
https://blog.csdn.net/macob/article/details/125998309