最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

linux 替換rm命令為移動到固定文件夾

2023-03-07 18:55 作者:不妙脆角  | 我要投稿

痛定思痛之后,寫個教程教大家直接把rm給換成mv,這樣就不會徹底刪除找不到了。


首先把rm的意義重定向。

> vi ~/.bashrc

#加入這么一行在bashrc中

alias rm='/home/rm_replace.sh'

#退出~/.bashrc后更新

> source?~/.bashrc

#檢查是否已經(jīng)重定向

> which rm

如果顯示了這行說明就對了。

擬實現(xiàn)的代碼目的和功能:

  1. 當rm時,需要輸入y確認

  2. 輸入y確認刪除后,也只是將文件或目錄移動到指定垃圾箱目錄下,假裝刪除,并保存移動的log文件到垃圾箱目錄中。

  3. 當指定目錄已有同名文件,將新移入的文件加上時間后綴。

  4. 無論是刪除目錄還是文件,都只需要rm,而不需要rm -rf。

注意:如果你完全看不懂下面的代碼,說明你不適合做這項操作。別搞。

定義rm_replace.sh

#!/bin/bash

# Define trash directory

TRASH_DIR="$HOME/Trash_for_rm"


# Create trash directory if it does not exist

if [[ ! -d "$TRASH_DIR" ]]; then

? ? mkdir -p "$TRASH_DIR"

fi


# Create log file in trash directory

LOG_FILE="$TRASH_DIR/trash_log_$(date +%Y%m%d_%H%M%S).txt"

touch "$LOG_FILE"


# Confirm deletion with user

echo "This is a custom rm command. It moves files and directories to the Trash instead of deleting them."

echo "Are you sure you want to continue? [y/n]"

read response



if [[ "$response" =~ ^[Yy]$ ]]; then


for file in "$@"; do

? ? # 獲取文件名和路徑

? ? filename=$(basename "$file")

? ? filepath=$(dirname "$file")


? ? # 判斷目標文件是否存在

? ? if [[ -e "$TRASH_DIR/$filename" ]]; then

? ? ? ? # 給文件名加上時間戳,避免文件名沖突

? ? ? ? timestamp=$(date +%Y%m%d%H%M%S)

? ? ? ? new_filename="${filename}_${timestamp}"

? ? ? ? echo "WARNING: file '$filename' already exists in Trash_for_rm, renaming to '$new_filename'."

? ? ? ? mv "$file" "$TRASH_DIR/$new_filename"

? ? ? ? ? ? echo "[$(date +%Y%m%d_%H%M%S)] Directory $file moved to trash." >> "$LOG_FILE"


? ? else

? ? ? ? mv "$file" "$TRASH_DIR"

? ? ? ? ? ? echo "[$(date +%Y%m%d_%H%M%S)] File $file moved to trash." >> "$LOG_FILE"


? ? fi

done


echo "Files and directories moved to Trash_for_rm."


else

? ? echo "Aborted."

fi

實戰(zhàn)效果如圖所示。


我現(xiàn)在已經(jīng)想開了。

linux 替換rm命令為移動到固定文件夾的評論 (共 條)

分享到微博請遵守國家法律
田东县| 尼勒克县| 巴青县| 景宁| 吉首市| 阳东县| 沙雅县| 略阳县| 望谟县| 涿州市| 永仁县| 巴林右旗| 维西| 本溪市| 广安市| 绥芬河市| 黎川县| 瑞丽市| 方正县| 武城县| 乐至县| 枝江市| 兴仁县| 廉江市| 黄陵县| 太仓市| 鸡西市| 达日县| 行唐县| 自治县| 遵化市| 龙岩市| 南丰县| 丽水市| 修武县| 洛南县| 二连浩特市| 易门县| 广灵县| 体育| 尚义县|