diff options
-rwxr-xr-x | bash/c-2-f | 3 | ||||
-rwxr-xr-x | bash/f-2-c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bash/c-2-f b/bash/c-2-f new file mode 100755 index 0000000..597cb48 --- /dev/null +++ b/bash/c-2-f @@ -0,0 +1,3 @@ +#!/bin/sh + +gunits "tempC($1)" 'tempF' diff --git a/bash/f-2-c b/bash/f-2-c new file mode 100755 index 0000000..b50df93 --- /dev/null +++ b/bash/f-2-c @@ -0,0 +1,3 @@ +#!/bin/sh + +gunits "tempF($1)" 'tempC' |