We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf7d61f commit 803e88bCopy full SHA for 803e88b
tmux-parallel.py
@@ -57,6 +57,7 @@ def call(shell_cmd):
57
for brew_file in args.file:
58
with open(brew_file, 'r') as f:
59
apps = f.readlines()
60
+ apps = filter(lambda x: not x.startswith('#'), apps)
61
apps = map(lambda x: x.replace('\n', '').strip(), apps)
62
apps = filter(lambda x: len(x) > 0, apps)
63
parallel_groups.append(apps)
0 commit comments