Splunk Search

How to run a Shell Script run from a search command?

SirHill17
Communicator

Hi,

I am trying to run a shell script from a search command. So I have created a shell script under $SPLUNK_HOME/etc/apps/myapp/bin/ and a specific commands.conf file with the below content:

[MYSCRIPT]
type = shell
file = ./myscript.sh

Running the following command on the search bar:

| script MYSCRIPT

I got an error message which is:

The type 'shell' for command 'MYSCRIPT' in commands.conf is invalid.

As per the doc, if I understand well, we can only use python or perl?

filename = "string"
    * Name of script file for command.
    * <script-name>.pl for perl.
    * <script-name>.py for python.

Thanks for your answer.

0 Karma
1 Solution

SirHill17
Communicator

It's finally not possible, I did Perl or Python and it works fine, so no shell. We will manage without 🙂

View solution in original post

0 Karma

SirHill17
Communicator

It's finally not possible, I did Perl or Python and it works fine, so no shell. We will manage without 🙂

0 Karma

woodcock
Esteemed Legend

Please click Accept to close the question.

0 Karma

woodcock
Esteemed Legend

You need to change file = ./myscript.sh to filename = ./myscript.sh.

0 Karma

SirHill17
Communicator

Correcting that I still got the same error message.

Checking the Splunk help:

| script
Makes calls to external Perl or Python programs

So I assume it is not possible to run shell script ? Anyone can confirm ?

Thanks!

0 Karma

woodcock
Esteemed Legend

The documentation is a bit vague so I am unsure. I always do perl and that works so you could always create a perl wrapper script to check.

cpm003
Path Finder

you can create a python for call to os.system

shelllauncher.py
import os
os.system('./yourscript.sh')

commands.conf

[shelllauncher]
chunked=false
type=python
filename = shelllauncher.py

yourscript.sh
#!/bin/bash
ps aux

on splunk search:
| shelllauncher | table *

you might see "ps aux" linux command on results

0 Karma
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...