here-document . Bash


commandline session

$cat hdoc.sh
#!/bin/bash

cat $1 <<EOF
EOF

 

$sh hdoc.sh bash.txt
hack
hacker
$
$cat bash.txt
hack
hacker
$vim hdoc.sh
$
$cat hdoc.sh
#!/bin/bash

grep $1 <<EOF
name jeffrin
age 36
sex male
EOF

$sh hdoc.sh 3
age 36
$

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: