Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
geir@edgy:~/ShellScripting$ cat kshelltest.ksh
#!/usr/bin/ksh
echo "Put filesystem name"
read filesystem
echo $filesystem
geir@edgy:~/ShellScripting$ ./kshelltest.ksh
Put filesystem name
\\\\brwsmxsusr01\\d$
\\brwsmxsusr01\d$
geir@edgy:~/ShellScripting$ which ksh
/usr/bin/ksh
geir@edgy:~/ShellScripting$ ls -l /usr/bin/ksh
lrwxrwxrwx 1 root root 29 2006-10-29 17:40 /usr/bin/ksh -> /etc/alternatives/usr.bin.ksh
geir@edgy:~/ShellScripting$ ls -l /etc/alternatives/usr.bin.ksh
lrwxrwxrwx 1 root root 10 2006-10-29 17:40 /etc/alternatives/usr.bin.ksh -> /bin/ksh93
geir@edgy:~/ShellScripting$ ls -l /bin/ksh93
-rwxr-xr-x 1 root root 1028188 2006-06-20 05:09 /bin/ksh93
geir@edgy:~/ShellScripting$
#!/bin/ksh
echo "Put filesystem name"
[b]read -r filesystem
print -r $filesystem[/b]