bin
bin copied to clipboard
Shell scripts
Results
1
bin issues
Sort by
recently updated
recently updated
newest added
Maybe that's the behaviour you want, but I think you might have scripted this wrong. ```sh #! /bin/sh WORDS=$XDG_DATA_HOME/dicen.txt [ -n "$@" ] && grep -E "$@" "$WORDS" ``` If...