如何编写一个名为myedit的shell脚本,要求用户输入文件名,然后启动vim编辑该文件?
答案 0 :(得分:1)
如果您是初学者,我建议您使用" Atom"例如编写代码。您只需要创建一个名为" myedit.sh"的新文件。在标题中使用此行:
#!/usr/bin/sh
以及之后的一小段代码:
echo "filename :" # here, you ask the user to input a filename
read varname # you recover the input
atom $varname & # you open Atom to modify your file (atom is easier than vim, you just need to install it).
答案 1 :(得分:0)
#!/bin/bash
echo "Enter a file name"
read file
vim $file