5 lines
78 B
Bash
Executable File
5 lines
78 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[[ $1 ]] || exit 1
|
|
|
|
cd $1 && find ~+ -name '*.txt' -exec ls {} \; |