All Questions
2 questions
1
vote
0
answers
376
views
what does 0 link means in bash file descriptor?
Each process uses a set of open files in linux . Now bash ( a shell ) is also a process which uses different file descriptor for standard input output.
If I find some file descriptors :
ls -l /proc/$$/...
2
votes
2
answers
3k
views
How does 'strace' work?
Recently, I was using mv to move a large amount of files from my hard drive to a flash drive. I forgot to add a verbose flag so I had no idea "where" the move was at and how many transfers remained.
...