adding linux answers (#290)

This commit is contained in:
iqtheengineer 2022-09-14 04:23:55 -04:00 committed by GitHub
parent 5c6e49192c
commit 3d129216e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -917,9 +917,13 @@ There are many answers for this question. One way is running `df -T`
<details>
<summary>How to create a
* new empty file
* a file with text (without using text editor)
* a file with given size</summary><br><b>
- new empty file
- a file with text (without using text editor)
- a file with given size</summary><br><b>
* touch new_file.txt
* cat > new_file [enter] submit text; ctrl + d to exit insert mode
* truncate -s <size> new_file.txt
</b></details>
<details>