hi...

I am trying to put the following command in shell script...
but am not able to do it...

can anyone help:

$ pppd pty "pptp --debug --nolaunchpppd 192.168.3.67" updetach user tunnel debug noauth require-mppe-128


thanks

Does the command work if you type it? if so you just need to put it in a script like this, I am assuming you want to use bash

#!/bin/bash
pppd pty "pptp --debug --nolaunchpppd 192.168.3.67" updetach user tunnel debug noauth require-mppe-128

then you need need to make it executable, use this command
chmod +x /location/of/script

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.