Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.15 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. INODE_NUMBER=$(ls -i plik10.txt | cut -d ' ' -f1)
  4.  
  5. for file in $(find \ -follow -inum ${INODE_NUMBER}); do
  6.     realpath $file
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement