文件操作 - terminateProcess.sh
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/vscode-languageclient/lib/node/terminateProcess.sh
编辑文件内容
#!/bin/bash # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- terminateTree() { for cpid in $(pgrep -P $1); do terminateTree $cpid done kill -9 $1 > /dev/null 2>&1 } for pid in $*; do terminateTree $pid done
修改文件时间
将文件时间修改为当前时间的前一年
删除文件