Help to integrate Shell script with PHP


 
Thread Tools Search this Thread
Top Forums Web Development Help to integrate Shell script with PHP
# 1  
Old 09-04-2017
Help to integrate Shell script with PHP

I have a shell script which takes user name and server name from the user and check the authentication type on that server like LDAP or VAS or local. It also provides various other info also such as owner of the ID and etc.
I need this script to work on the browser where user can directly input the values and get the output. For this I need to integrate my shell script with php or cgi.
Please help me in integrating it as I have not much idea in php.
# 2  
Old 02-25-2018
I think you can use exec PHP function to run your script.
Don't forget to make it executable using chmod +x ./script.sh
# 3  
Old 02-25-2018
Code:
<?php
$ouptut=`pwd`;
echo $ouptut;
?>

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to integrate all the systemctl commands into a shell script to verify any daemon/agent service?

Hi, Can we integrate all the systemctl command into a shell script to verify any service with all the options of systemctl if service integrate with the operating system service management tools to deliver their functionality. sudo systemctl start <service_name> sudo systemctl stop... (1 Reply)
Discussion started by: Mannu2525
1 Replies

2. Programming

How to Integrate DropBox in PHP Web Application?

Hello, I am PHP web application developer and I am working on a web app php, html based. But due to client requirement they want to save database backup on a Dropbox account. Is there a way to do that? Thanks in advance (1 Reply)
Discussion started by: AimyThomas
1 Replies

3. Shell Programming and Scripting

how to convert a shell script to a php script for displaying next word after pattern match

I have a shell script which I made with the help of this forum #!/bin/sh RuleNum=$1 cat bw_rules | sed 's/^.*-x //' | awk -v var=$RuleNum '$1==var {for(i=1;i<=NF;i++) {if($i=="-bwout") print $(i+3),$(i+1)}}' Basically I have a pages after pages of bandwidth rules and the script gives... (0 Replies)
Discussion started by: sb245
0 Replies

4. Shell Programming and Scripting

Again integrate files - bash script

I wrote script in bash which generates this report "users.csv": I wrote script in bash which generates this report "groups.csv" I want to integate two reports: "users.csv" and "groups.csv". I want like so that "result.csv": (2 Replies)
Discussion started by: patrykxes
2 Replies

5. Shell Programming and Scripting

Bash script - integrate two files

I wrote script in bash which generates this report "users.csv": I wrote script in bash which generates this report "groups.csv" I want to integate two reports: "users.csv" and "groups.csv". I want like so that "result.csv": Thx (5 Replies)
Discussion started by: patrykxes
5 Replies

6. Shell Programming and Scripting

Accessing php script from shell script

Hi I'm a newb to php scripts. My task requires me to run a shell script from within the php script which I believe I've figured out. What I'm trying to do now is output something to the web page from the called shell script. when I use "echo" from the called shell script I don't get any output... (3 Replies)
Discussion started by: airon23bball
3 Replies

7. UNIX for Dummies Questions & Answers

Shell Script to Auto Run PHP Script

Hello All! I am looking to build a monitoring script. The script should always run as a system service of some type and should always check that a PHP script is running. Maybe there is a way to assign a PHP script to a certain PID so that the monitor script that check for the PID in top... (4 Replies)
Discussion started by: elDeuce
4 Replies

8. UNIX and Linux Applications

Integrate PHP + Unix commands

Hi I am using fedora 4, its only for desktop usage. its in gui mode. the system is always on and in login screen. whenever a particular user logins in, aphp page inside the system should run. The user should not be able to view the desktop. The user has the info in the php webpage to work... (1 Reply)
Discussion started by: karthikn7974
1 Replies
Login or Register to Ask a Question