- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

morethanyell
Builder
03-15-2022
11:43 AM
After a successful saved-search run, the results can be found on the directory `$SPLUNK_HOME/var/run/splunk/dispatch/scheduler__...`
We know that the result of the search is named `results.csv.gz`
How do we read this in the OS level apps? Untarring it using `tar -xzvf` does not work.
Thanks
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
03-15-2022
01:40 PM
It's not a tarball so tar won't help. It's just a CSV file compressed with gzip. You should be able to view it using gunzip -c results.csv.gz | more
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
03-15-2022
01:40 PM
It's not a tarball so tar won't help. It's just a CSV file compressed with gzip. You should be able to view it using gunzip -c results.csv.gz | more
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
