Created SC2000 (markdown)

spiralofhope
2020-03-25 05:09:27 -07:00
parent b00774d098
commit bfd3fd7741

11
SC2000.md Normal file

@@ -0,0 +1,11 @@
# See if you can use ${#variable} instead
## example code
``` bash
#!/usr/bin/env bash
if [ "$( echo "$1" | wc -c )" -gt 1 ]; then
echo "greater than 1"
fi
```