allow to run scripts from any folder
This commit is contained in:
parent
2303019af2
commit
743a2656af
@ -1 +1,3 @@
|
||||
cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | sort -u | wc -l
|
||||
#/usr/bin/env bash
|
||||
BASEDIR=$(dirname "$0")
|
||||
cat "$BASEDIR/README.md" | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | sort -u | wc -l
|
||||
|
@ -1 +1,3 @@
|
||||
grep http README.md | cut -d '[' -f 2 | cut -d ']' -f 1 | sed 's/\*//g' | grep -v "/" | sort | uniq -c | sort -n
|
||||
#/usr/bin/env bash
|
||||
BASEDIR=$(dirname "$0")
|
||||
grep http "$BASEDIR/README.md" | cut -d '[' -f 2 | cut -d ']' -f 1 | sed 's/\*//g' | grep -v "/" | sort | uniq -c | sort -n
|
||||
|
@ -1 +1,3 @@
|
||||
cat README.md | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sort | uniq -c | sort -n
|
||||
#/usr/bin/env bash
|
||||
BASEDIR=$(dirname "$0")
|
||||
cat "$BASEDIR/README.md" | cut -d'(' -f2 | cut -d')' -f1 | egrep "^http*" | awk -F/ '{print $3}' | sort | uniq -c | sort -n
|
||||
|
@ -1 +1,3 @@
|
||||
grep -o -E '[a-zA-Z]{3,}' README.md | tr A-Z a-z | sort | uniq -c | sort -n
|
||||
#/usr/bin/env bash
|
||||
BASEDIR=$(dirname "$0")
|
||||
grep -o -E '[a-zA-Z]{3,}' "$BASEDIR/README.md" | tr A-Z a-z | sort | uniq -c | sort -n
|
||||
|
Loading…
Reference in New Issue
Block a user