diff options
author | vulonkaaz <7442677+vulonkaaz@users.noreply.github.com> | 2024-08-09 19:21:18 +0200 |
---|---|---|
committer | vulonkaaz <7442677+vulonkaaz@users.noreply.github.com> | 2024-08-09 19:21:18 +0200 |
commit | 8375c66fd4f9112c826dcfcd0770ad97b1f85016 (patch) | |
tree | 7cc9928ef2b228b4f8a0a603251afa8bb2f25e4c /calc.sh |
initial commit
Diffstat (limited to 'calc.sh')
-rwxr-xr-x | calc.sh | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/bin/sh + +var=calculator + +while [ "$var" ] +do + var=$(dmenu -p $var </dev/null|bc) +done |