创建普通文件
SylixOS 命令行下,有多种方法可创建普通文件:
- 通过
touch
命令创建文件。 - 通过
vi
命令创建文件。 - 通过
cp
命令创建文件。 - 通过重定向输出创建文件。
- 通过
open
命令创建文件。
[root@sylixos:/apps]# touch sylixos
[root@sylixos:/apps]# ll
-rw-r--r-- root root Wed Jan 21 19:11:19 2009 0 B, sylixos
drwxr-xr-- root root Wed Jan 21 18:33:01 2009 testhes/
drwxr-xr-- root root Fri Jan 16 14:58:19 2009 RMS_TEST/
[root@sylixos:/root]# ll
-rw-r--r-- root root Thu Jun 29 15:27:22 2023 0 B, test3
-rw-rw-rw- root root Thu Jun 29 15:19:18 2023 19 B, helloworld.sh
lrwxrwxrwx root root Thu Jun 29 15:04:58 2023 test-ln -> test
-rw-rw-rw- root root Mon May 29 20:44:24 2023 4805 B, test2
-rw-rw-rw- root root Mon May 29 19:22:19 2023 130KB, test
total items: 5
[root@sylixos:/root]#
[root@sylixos:/root]#
[root@sylixos:/root]# echo hello >>test4
[root@sylixos:/root]# ll
-rw-r--r-- root root Thu Jun 29 15:28:51 2023 7 B, test4
-rw-r--r-- root root Thu Jun 29 15:27:22 2023 0 B, test3
-rw-rw-rw- root root Thu Jun 29 15:19:18 2023 19 B, helloworld.sh
lrwxrwxrwx root root Thu Jun 29 15:04:58 2023 test-ln -> test
-rw-rw-rw- root root Mon May 29 20:44:24 2023 4805 B, test2
-rw-rw-rw- root root Mon May 29 19:22:19 2023 130KB, test
total items: 6
[root@sylixos:/root]#
[root@sylixos:/root]# ll
-rw-rw-rw- root root Thu Jun 29 15:19:18 2023 19 B, helloworld.sh
lrwxrwxrwx root root Thu Jun 29 15:04:58 2023 test-ln -> test
-rw-rw-rw- root root Mon May 29 20:44:24 2023 4805 B, test2
-rw-rw-rw- root root Mon May 29 19:22:19 2023 130KB, test
total items: 4
[root@sylixos:/root]# open test3 200 666
open file return: 6 dev 30632c54 inode 30f size 0
[root@sylixos:/root]# ls
test3 helloworld.sh test-ln test2 test
[root@sylixos:/root]# ll
-rw-r--r-- root root Thu Jun 29 15:27:22 2023 0 B, test3
-rw-rw-rw- root root Thu Jun 29 15:19:18 2023 19 B, helloworld.sh
lrwxrwxrwx root root Thu Jun 29 15:04:58 2023 test-ln -> test
-rw-rw-rw- root root Mon May 29 20:44:24 2023 4805 B, test2
-rw-rw-rw- root root Mon May 29 19:22:19 2023 130KB, test
total items: 5
[root@sylixos:/root]#