Add notes on testing file & directory existance

This commit is contained in:
Marcello 2021-11-08 11:47:02 +01:00
parent 7bc6bc6e97
commit 1fad5ca3bd

View file

@ -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 [start-position] -type d -name DIRNAME # search for a directory named "dirname"
find [path] -exec <command> {} \; # execute command on found items (identified by {}) find [path] -exec <command> {} \; # execute command on found items (identified by {})
[ -f "path" ] # test if a file exists [[ -f "path" ]] # test if a file exists
[ -d "path" ] # test if a folder exists [[ -d "path" ]] # test if a folder exists
[[ -L "path" ]] # test if is symlink
``` ```
### Other ### Other