Commit 5319c648 authored by Samarth Joshi's avatar Samarth Joshi

Bug Fix: modify xargs command to support folder names with spaces

parent f0fdb15b
#!/bin/sh #!/bin/bash
find $1 -name "*.*" | xargs grep -sv '^$'| wc -l find $1 -name "*.*" | xargs -I{} grep -sv '^$' "{}" | wc -l
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment