diff options
author | ikoamu <ikoamu@gmail.com> | 2024-04-02 17:53:48 +0900 |
---|---|---|
committer | ikoamu <ikoamu@gmail.com> | 2024-04-02 17:53:48 +0900 |
commit | f70144d438a7d7a548b02e41a514ccbd1792c4aa (patch) | |
tree | 866105785e6761a8e98c36a6af115bbcd44c505f | |
parent | 576693b00aa2be6ab4d2e9a24f3b6ffca627a304 (diff) |
Remove unnecessary echo
-rwxr-xr-x | create_notes.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/create_notes.sh b/create_notes.sh index 1760018..9965593 100755 --- a/create_notes.sh +++ b/create_notes.sh @@ -8,9 +8,7 @@ cat graphdata.json | jq -c '.data.nodes[]' | while read -r nodes; do id=$(echo "${nodes}" | jq -r '.id') - file=$(echo "${nodes}" | jq -r '.file') - echo "=============================" - + file=$(echo "${nodes}" | jq -r '.file') timestamp=$(echo "${file}" | cut -d'-' -f1) matching_file=$(find "${org_path}" -name "${timestamp}-*.org" -type f) |