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
| # List all running transmit disk tasks | |
| # --------------------------------------------------------------------------- | |
| ps aux | grep "Transmit Disk" | |
| # Kill All transmit disk tasks. | |
| # | |
| # Potentially dangerious as it could apply to all users on system. | |
| # --------------------------------------------------------------------------- | |
| pkill -9 -f "Transmit Disk" |