7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

トッリク・オア・シェル芸

Last updated at Posted at 2014-10-31

前準備

bash
# echo 'Trick or Treat!' > hoge
# tail -f hoge &
[1] 2550
Trick or Treat!
# 
# rm -f hoge
# ls -l hoge
ls: cannot access hoge: No such file or directory

ここから

bash
# lsof|grep hoge
tail      2550      root    3r      REG                8,2        16     129635 /root/hoge (deleted)

extファイルシステム限定

bash
# debugfs /dev/sda2 -R 'cat <129635>'
debugfs 1.41.12 (17-May-2010)
Trick or Treat!

procファイルシステムがある場合

bash
# cat /proc/2550/fd/3
Trick or Treat!

後始末

bash
# kill %%
[1]+  Terminated              tail -f hoge
7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?