In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
Is there a recycle bin in the linux system? In view of this problem, this article introduces the corresponding analysis and answers in detail, hoping to help more partners who want to solve this problem to find a more simple and feasible way.
Linux does not have a unified recycle bin, and the recycle bin is added to the desktop environment. Therefore, when you use the rm command to delete a file, you should be careful that the file cannot be recovered after deletion.
Next, we implement a Recycle Bin function on the server ourselves.
1. First create a folder in your home directory to save the deleted files
Mkdir-p ~ / .Trash
2. Modify the .bashrc file
Vi / .bashrc
Add the following after the .bashrc file
Alias rm=trash alias rl='ls ~ / .Trash 'alias ur=undelfile undelfile () {mv-I ~ / .Trash/$@. /} trash () {mv $@ ~ / .Trash/} cleartrash () {read-p "Clear trash? [n]" confirm [$confirm = =' Y'] | [$confirm = ='Y'] & & / usr/bin/rm-rf ~ / .Trash/*}
3. Save after adding, and execute the source command to take effect.
Source / .bashrc
Use
You can now use the rm (delete), ur (undo), rl (list recycle bin), cleartrash (empty recycle bin) commands.
# Delete a folder, the files under helloworld are moved to the Recycle Bin $rm helloworld# delete a file $rm abc.txt# cancel abc.txt$ur abc.txt# cancel helloworld folder $ur helloworld# list the Recycle Bin $rl# empty the Recycle Bin cleartrash the answer to the question about whether there is a Recycle Bin in the linux system is shared here, I hope the above content can be of some help to you, if you still have a lot of questions unsolved You can follow the industry information channel for more related knowledge.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.