Skip to content
Snippets Groups Projects
Commit f7506ddc authored by Raymond Toy's avatar Raymond Toy
Browse files

Filter out the Config.*common files from the list of lisp variants.

parent a8f7a91b
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ usage() { ...@@ -10,7 +10,7 @@ usage() {
echo "" echo ""
# List possible values for lisp-variant and motif-variant # List possible values for lisp-variant and motif-variant
echo "Possible LISP-VARIANTs:" echo "Possible LISP-VARIANTs:"
( cd src/lisp/ && ls -1 Config.* ) | sed 's;^Config[.];;g' | pr -3at -o 8 || quit "Can't list lisp-variants" ( cd src/lisp/ && ls -1 Config.* ) | sed 's;^Config[.];;g' | grep -v common | pr -3at -o 8 || quit "Can't list lisp-variants"
echo "Possible MOTIF-VARIANTs:" echo "Possible MOTIF-VARIANTs:"
( cd src/motif/server/ && ls -1 Config.* ) | sed 's;^Config[.];;g' | pr -3at -o 8 || quit "Can't list lisp-variants" ( cd src/motif/server/ && ls -1 Config.* ) | sed 's;^Config[.];;g' | pr -3at -o 8 || quit "Can't list lisp-variants"
exit 2 exit 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment