Inital commit
This commit is contained in:
8
Playground/testCTloopExclude.sh
Normal file
8
Playground/testCTloopExclude.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
ExcludeList=(100 900)
|
||||
|
||||
for CTID in $(pct list | tail -n+2 | awk '{print $1}'); do
|
||||
if [[ "${ExcludeList[*]}" =~ $CTID ]]; then continue; fi
|
||||
echo "Task for $CTID"
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user