As part of my latest course assignment, I have been using Cas Cremer’s Scyther tool for one of the questions. It is a Python programme that allows a user to test a protocol for security properties.
It is very user friendly once it gets going but I got frustrated with having to go the directory and then run the command.
So I wrote a small shell script and symlinked to /usr/local/bin to so that it appeared on the path.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SPDL=$1 | |
python scyther-gui.py ${SPDL} |
It needs more work but the basics are definitely there.
No Comments