Link to home
Create AccountLog in
Avatar of Hiro 714
Hiro 714

asked on

shell script question

Would you advise why this does not read a siteinfo.txt?

(21-06-20 6:15:52) <0> [/apollo/env/siteinfo]
dev-dsk % ./site.sh Test

=====Test Site information=====
test
================================


(21-06-20 6:17:22) <127> [/apollo/env/Shobai-dogu/siteinfo]
dev-dsk % cd

(21-06-20 6:17:24) <0> [~]
dev-dsk % /apollo/env/siteinfo/site.sh Test
cat: siteinfo.txt: No such file or directory

Open in new window



dev-dsk % nano site.sh
  GNU nano 2.0.9                   File: site.sh


#!/bin/bash

cat siteinfo.txt | awk '/<'${1}'>/,/<\/'${1}'>/' | sed 's/<'${1}'>//' | sed 's/<\/'${1}'>//'

Open in new window

SOLUTION
Avatar of simon3270
simon3270
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Avatar of Hiro 714
Hiro 714

ASKER

Thank you. What would be the absolute path for this file?
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.