This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dir="$1" | |
display_prefix="$2" | |
# No directory has been provided, use current | |
if [ -z "$dir" ] | |
then | |
dir="`pwd`" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dir="$1" | |
display_prefix="$2" | |
option="$3" | |
# No directory has been provided, or a "--" option has been given instead (which can be the case when invoked by the user) | |
# In either case, use current dir | |
if [ -z "$dir" ] || [[ $dir == --* ]]; then | |
option=$dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[graphviz] | |
[subs="attributes"] | |
---- | |
digraph g { | |
{propA} -> {propB} | |
} | |
---- |