In the shell script, implement switch user and execute command operation _linux Shell

Source: Internet
Author: User
Tags python script

Today, my company colleagues came to me and said that I was going to execute the Python script on the server with another user, but it was always done by the root user in the crontab, so I thought of a lazy way to use the shell script to switch to that user, And then execute that Python script. Ok, I'll just show you how to use a shell script to switch to another user to execute a command.

System: CentOS 5.x

Script content:

Cat test.sh

Copy Code code as follows:

#!/bin/bash
Su-test <<eof
Pwd
Exit
Eof

To execute the result diagram:

Of course, you can use the following command to perform


Copy Code code as follows:

Su-test-c "PWD"

Ps:

Switch user to execute only one command: Su-oracle-c command
Switch user to execute a shell file can be used: su-oracle-s/bin/bash shell.sh

All right, that's it.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.