mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Add notes on testing file & directory existance
This commit is contained in:
parent
7bc6bc6e97
commit
1fad5ca3bd
1 changed files with 3 additions and 2 deletions
|
@ -127,8 +127,9 @@ find [start-position] -type f -name FILENAME # search for a file named "filenam
|
|||
find [start-position] -type d -name DIRNAME # search for a directory named "dirname"
|
||||
find [path] -exec <command> {} \; # execute command on found items (identified by {})
|
||||
|
||||
[ -f "path" ] # test if a file exists
|
||||
[ -d "path" ] # test if a folder exists
|
||||
[[ -f "path" ]] # test if a file exists
|
||||
[[ -d "path" ]] # test if a folder exists
|
||||
[[ -L "path" ]] # test if is symlink
|
||||
```
|
||||
|
||||
### Other
|
||||
|
|
Loading…
Add table
Reference in a new issue