This file contains hidden or 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
#NoEnv | |
SetBatchLines, -1 | |
Conversion := {"mph": 0.44704, "km/s": 0.277778} | |
MsgBox, Put the input on the clipboard then hit OK | |
Data := ParseInput(Clipboard) | |
Data.Cameras.Remove(1) ; This is a redundant camera for my purposes |
This file contains hidden or 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 | |
# Implements GNU seq functionality. | |
# Useful on IBM AIX systems which don't have GNU coreutils. | |
if [ -z "$3" ]; then | |
# if no third arg | |
incr=1 | |
j=$2 | |
else | |
incr=$2 |