创建新文件 in Linux
下面介绍几种常用的命令行创建新文件的方法。
touch:
touch test1.txt
>:
> test2.txt
cat:
cat /dev/null > test3.txt
echo:
echo > test4.txt
vim:
vim test5.txt
:wq
使用中选择最简单的方式即可。
标签:无
下面介绍几种常用的命令行创建新文件的方法。
touch:
touch test1.txt
>:
> test2.txt
cat:
cat /dev/null > test3.txt
echo:
echo > test4.txt
vim:
vim test5.txt
:wq
使用中选择最简单的方式即可。
标签:无