Linux编写shell脚本,要求用户输入一串字符,并写入一个文件,文件名由用户输入。

话不多说,上代码:
#! /bin/bash
read -p “input your txt:” txt
read -p “input your file name:” name
echo ${txt} > ${name}

    原文作者:Poulyield
    原文地址: https://blog.csdn.net/ksws0319440/article/details/111462869
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞