Coder Social home page Coder Social logo

acp-vpn-bash's People

Contributors

alex-swann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

acp-vpn-bash's Issues

Add to README, permissions issue & fix

Super dooper script thanks. Maybe it was my fault but I copied the script and it would display the following when I tried to run it:

sudo: ./acp_vpn.sh: command not found

so I had to the change the permission of the file

chmod 777 acp_vpn.sh

it then worked a treat :)

If then else

acp-vpn-bash/acp_vpn.sh

Lines 172 to 177 in cdba214

if [ "$1" == 'start' ]; then
selected_values $2
startup_vpns
fi
if [ "$1" == 'stop' ]; then

I think you could benefit from using elif here (and on the subsequent checks for $1).

Also I note you're using inline ifs, e.g. if [[ condition ]] ; then do-something ; fi - you might like to consider a shorthand version:

[ condition ] && do-something

... you can even do ternaries:

[ condition ] && do-something || something-else

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.