12 lines
184 B
Markdown
Raw Normal View History

2018-05-28 20:34:12 +01:00
---
functions:
file-write:
2018-07-16 15:01:50 +02:00
- code: |
LFILE=file_to_write
echo "data" | dd of=$LFILE
2018-07-04 19:26:52 +01:00
file-read:
2018-07-16 15:01:50 +02:00
- code: |
LFILE=file_to_read
dd if=LFILE
2018-05-28 20:34:12 +01:00
---