Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 9v006233d72d000000000219

Fix the shell script!

Fix the shell script with the fewest keystrokes!

Start file
#!/bin/bash
a = 5
b = 10
sum = $a + $b
echo $sum

mul = $a * $b
echo $mul
End file
#!/bin/bash
a=5
b=10
sum=$((a + b))
echo $sum

mul=$((a * b))
echo $mul

View Diff

2,4c2,4
< a = 5
< b = 10
< sum = $a + $b
---
> a=5
> b=10
> sum=$((a + b))
7c7
< mul = $a * $b
---
> mul=$((a * b))

Solutions by @iamsoojee:

Unlock 11 remaining solutions by signing in and submitting your own entry
Created by: @u_hossein

540 active golfers, 2338 entries

Solutions by @iamsoojee:
28
#144 - 이수지 / @iamsoojee

04/05/2023 at 05:07AM

29
#>196 - 이수지 / @iamsoojee

04/03/2023 at 07:21AM

30
#>223 - 이수지 / @iamsoojee

04/03/2023 at 07:18AM

31
#>254 - 이수지 / @iamsoojee

04/03/2023 at 06:42AM

31
#>254 - 이수지 / @iamsoojee

04/03/2023 at 07:00AM

31
#>254 - 이수지 / @iamsoojee

04/03/2023 at 07:07AM

31
#>254 - 이수지 / @iamsoojee

04/03/2023 at 07:13AM

32
#>264 - 이수지 / @iamsoojee

04/03/2023 at 06:30AM

33
#>276 - 이수지 / @iamsoojee

04/03/2023 at 06:09AM

34
#>286 - 이수지 / @iamsoojee

04/03/2023 at 06:50AM

42
#>387 - 이수지 / @iamsoojee

04/03/2023 at 06:00AM