4 lines
102 B
Bash
Executable file
4 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
ps ax | grep playwright | grep "vite\|tsc\|babel\|esbuild" | sed 's|pts/.*||' | xargs kill
|
|
|