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