Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

bash string before substring

TEXT="A very long text to read"
echo "${TEXT#*very }" #the string after the substring "very"
#output:
#long text to read

echo "${TEXT% to*}" #the string before the substring " to"
#output:
#A very long text
Comment

PREVIOUS NEXT
Code Example
Shell :: run cron once a week 
Shell :: install jdk linux command 
Shell :: apt find package 
Shell :: pip remove 
Shell :: npm_config_node_gyp 
Shell :: linux substitute string 
Shell :: how to fix could not fix var lock /var/lib/dpkg/lock ubuntu 
Shell :: how to remove remote ulr 
Shell :: how to kill orphan 
Shell :: get ros version 
Shell :: Install psycopg2-binary on linux 
Shell :: how to install go in kali linux 
Shell :: git remove all tags 
Shell :: git file line history 
Shell :: lua reverse shell 
Shell :: start apache service 
Shell :: find application path ubuntu 
Shell :: uninstall gitlab-ee 
Shell :: Get total duration of video files in a directory 
Shell :: regex all not numbers 
Shell :: ubuntu extract rar file 
Shell :: vite starting comand 
Shell :: install kubectl 
Shell :: linux check if dir is mounted 
Shell :: global gitignore 
Shell :: ubuntu desktop sharing not working teams 
Shell :: how to install tensorflow on anaconda 
Shell :: remove docker created network 
Shell :: svelte install 
Shell :: curl: (7) Failed to connect to localhost port 9200: Connection refused 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =