Use ctrl+d instead of ctrl+c

This commit is contained in:
Jacob Chapman 2022-05-14 13:10:26 -05:00 committed by GitHub
parent a59c8598b0
commit f459755ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2837,12 +2837,26 @@ var=$((var+1))
cat filename|rev|cut -f1|rev
```
##### Cat to a file
##### Create or replace a file with contents
```bash
cat >myfile
let me add sth here
exit by control + c
^C
# exit with ctrl+d
tee myfile
let me add sth else here
# exit with ctrl+d
```
##### Append to a file with contents
```bash
cat >>myfile
let me add sth here
# exit with ctrl+d
tee -a myfile
let me add sth else here
# exit with ctrl+d
```
##### Clear the contents of a file (e.g. filename)