-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrite_file.sh
More file actions
11 lines (9 loc) · 785 Bytes
/
write_file.sh
File metadata and controls
11 lines (9 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
#! /bin/bash
test="test"
cat > file.dat <<EOF
This is a ${test}
Second line of my test
EOF
#in file.dat trovo
#This is a test
#Second line of my test