5 lines
69 B
Bash
Executable File
5 lines
69 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
FILE_PATH=`whereis $1 | awk '{print $2}'`
|
|
cat $FILE_PATH
|