Last active
July 29, 2022 20:18
-
-
Save nawawi/ec01e902bbb6a2fed3c09df03f383976 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
FIFO="/path-to-ss_cmd.txt"; | |
LIST="$(sort -u $FIFO)"; | |
for CMD in $LIST; do | |
$CMD | |
done | |
rm $FIFO; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment