আপনি find
আপনার শেলের পরিবর্তে ব্যবহার করতে পারেন :
find . -mindepth 1 -maxdepth 1 ! -name "*.dmg" -delete
থেকে man find
:
! expr True if expr is false. This character will also usually need
protection from interpretation by the shell.
-name pattern
Base of file name (the path with the leading directories removed)
matches shell pattern pattern.
-delete
Delete files; true if removal succeeded. If the removal failed,
an error message is issued. If -delete fails, find's exit status
will be nonzero (when it eventually exits). Use of -delete
automatically turns on the -depth option.
যদি আপনি find
যে কোনও কারণে ব্যবহার করতে না পারেন তবে এখানে zsh
(বা অন্যান্য শেল) এটি করার একটি উপায় । zsh
সত্ত্বেও zsh
, সম্ভবত এটি করার একটি সহজ উপায় আছে তবে আমি যেহেতু একজন bash
লোক তাই এটি নিয়েই আমি এলাম:
for file in *; do if [[ ! "$file" == *.dmg ]]; then rm $file; fi; done
rm -r secrets/!(directory)
করিnumber expected
event not found: directory