Add dos2unix

Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
Joshua Rogers 2023-03-19 12:42:47 +01:00 committed by GitHub
parent 53b09bd16a
commit 1121363e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
_gtfobins/dos2unix.md Normal file
View File

@ -0,0 +1,8 @@
---
functions:
file-write: # should be file-copy
- code: |
LFILE1=file_to_read
LFILE2=file_to_write
dos2unix -f -n "$LFILE1" "$LFILE2"
---