Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

shell script remove file if exists

#!/bin/bash

file="file_you_want_to_delete"

if [ -f "$file" ] ; then
    rm "$file"
fi
Comment

PREVIOUS NEXT
Code Example
Shell :: install gnome software 
Shell :: list devices in network 
Shell :: install crate 
Shell :: fix windows and linux time 
Shell :: install vue in laravel 
Shell :: uninstall package ubuntu 
Shell :: center dock icons ubuntu 
Shell :: bash limit memory use of a function 
Shell :: mkdir create if not exists 
Shell :: centos search file by name 
Shell :: discard unstaged changes git 
Shell :: delete files with extension recursively 
Shell :: pull specific commit 
Shell :: create a vpn server linux 
Shell :: activate conda environment in bash script 
Shell :: pip version ubuntu 
Shell :: reinstall chrome ubuntu 
Shell :: windows docker update clock 
Shell :: reset git project 
Shell :: git all branches 
Shell :: How to Install Google Chrome on Centos 8 
Shell :: set root password kali 
Shell :: powershell connect to serial port 
Shell :: amazon linux install ssm agent 
Shell :: run cmd elevated command line 
Shell :: install jest 
Shell :: Unit nginx.service is masked 
Shell :: poetry install 
Shell :: ffmpeg overwrite 
Shell :: how to customize grub 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =