Recycle Bin For Linux
- move file to trash directory:
del file_path - recover file from trash directory:
undel file_pathorundel trash_path - permanently delete file:
pdel trash_file - print trash tree:
tt - print trash tree with
less:tl - example
del ~/a,del /root/a,del a,del \^a,del '^a',del 'a/*/*'undel ~/a,undel /root/a,undel a,undel /root/.Trash/a,del 'a/*/*'pdel ~/a,pdel /root/a,pdel a,pdel /root/.Trash/a,pdel 'a/*/*',pdel '/tmp/*'tt,tt ~,tl '*/*'tl,tl ~,tl '*/*'
- Using the
undel,pdel,tt,tlcommand prompt when pressing tab lists the files prompted for current path deleted files and Recycle Bin root path deleted files$ pwd /test $ mkdir dir /dir /dir2 $ del dir /dir /dir2 mkdir -p /root/.Trash/test/dir mv /test/dir /root/.Trash/test/dir/2022-09-02_01:39:06704016_4.0K mkdir -p /root/.Trash/dir mv /dir /root/.Trash/dir/2022-09-02_01:39:06713729_4.0K mkdir -p /root/.Trash/dir2 mv /dir2 /root/.Trash/dir2/2022-09-02_01:39:06719008_4.0K $ pdel <tab> dir/ dir2/ etc/ home/ mnt/ root/ usr/ $ pdel dir Permanently delete /root/.Trash/test/dir ? [N/y] y rm -rf /root/.Trash/test/dir/2022-09-02_01:22:26772094_4.0K rmdir /root/.Trash/test/dir rmdir /root/.Trash/test $ pdel dir Permanently delete /root/.Trash/dir ? [N/y] y rm -rf /root/.Trash/dir/2022-09-02_01:22:29299637_4.0K rmdir /root/.Trash/dir $ pdel /dir2 Permanently delete /root/.Trash/dir2 ? [N/y] y rm -rf /root/.Trash/dir2/2022-09-02_01:39:06719008_4.0K rmdir /root/.Trash/dir2
pip install py-recyclerecycle_init- If you did not add python script location to
PATH, execute/usr/local/bin/recycle_init 2&> /dev/null || ~/.local/bin/recycle_init
- If you did not add python script location to
VERBOSE: Show operationsENABLE_EMOJI: Enable emojiENABLE_COLOR: Enable colorTREE_ALL_DIRECTORY_SIZE: Print all file or directory sizeTRASH_PATH: Recycle bin absolute pathFILE_SIZE_COLORS: Customize the color of file size units
Example:
vim ~/.py_recycle.json
{
"VERBOSE": true,
"ENABLE_EMOJI": true,
"ENABLE_COLOR": true,
"TREE_ALL_DIRECTORY_SIZE": false,
"TRASH_PATH": "/root/.Trash",
"FILE_SIZE_COLORS": {
"file size unit": [
"file size < 10unit",
"file size < 100unit",
"file size < 1000unit",
"file size < 10000unit"
],
"choice of color": [
"black",
"red",
"green",
"orange",
"blue",
"magenta",
"cyan",
"light_gray",
"dark_gray",
"light_red",
"light_green",
"yellow",
"light_blue",
"light_purple",
"light_cyan",
"white"
],
"": [
"light_gray",
"light_gray",
"light_gray",
"light_gray"
],
"b": [
"light_gray",
"light_gray",
"light_gray",
"light_gray"
],
"B": [
"light_gray",
"light_gray",
"light_gray",
"light_gray"
],
"K": [
"light_gray",
"light_gray",
"light_gray",
"cyan"
],
"M": [
"cyan",
"cyan",
"light_cyan",
"orange"
],
"G": [
"orange",
"orange",
"yellow",
"magenta"
],
"T": [
"magenta",
"magenta",
"light_purple",
"red"
],
"P": [
"red",
"red",
"light_red",
"light_red"
]
}
}- show different color by trash file size
- folder path support regex, 'del /\d+/a.*?'