diff options
author | Squibid <me@zacharyscheiman.com> | 2023-10-13 13:46:35 +0000 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-10-13 13:46:35 +0000 |
commit | f5f0c6344299e2f43e1fa82e67046fc295db4af6 (patch) | |
tree | 62cfd170c39dd7a06558080c5fafc7ef67c578ae | |
parent | 4a69125772f1b15cc6d98ab608166f873e92ea74 (diff) | |
download | coreutils-master.tar.gz coreutils-master.tar.bz2 coreutils-master.zip |
-rw-r--r-- | rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ rm(char *fn, int frc, int ask, int prompt) /* confirm deletion(s) when ask is on, and size is over 0 */ if ((prompt && !frc) || (ask && sz > 0)) { - printf("Do you want to delete %s? ", fn); + printf("Do you want to delete %s? (y/n) ", fn); yn = getchar(); if (yn == 'y') |