RosettaCodeData/Task/Delete-a-file/Ed/delete-a-file.ed

13 lines
238 B
Plaintext

# by Artyom Bologov
# Write nothing to the file.
# That's the best one can do with ed native APIs.
,d
w input.txt
# Invoking the shell.
# More reliable but surrendering to the OS.
!rm input.txt
!rm -r docs/
!rm /input.txt
!rm -r /docs/
Q