fuser Linux command

fuser Linux command

بعضی وقتها قصد حذف فایلی رو داریم ولی برنامه یا چیزی در حال استفاده از اون فایله و نمیشه حذفش کرد. با fuser میشه فهمید چه برنامه ای در حال استفاده از اون فایله و با -k هم میشه اون پراسس رو کیل کرد.

fuser FILE_PATH

قابلیت های دیگه هم داره که میتونید از man page اش بخونید.

fuser -km /home

kills all processes accessing the file system /home in any way.

if fuser -s /dev/ttyS1; then :; else command; fi

invokes command if no other process is using /dev/ttyS1.

fuser telnet/tcp

shows all processes at the (local) TELNET port.