Sed
Jump to navigation
Jump to search
Sed Oneliners
Change first occurence ape in each line to rock.
sed 's/ape/rock/'
Delete all lines starting from the line containing ape to the line containing rock.
sed '/ape/,/rock/d'
Change first occurence ape in each line to rock.
sed 's/ape/rock/'
Delete all lines starting from the line containing ape to the line containing rock.
sed '/ape/,/rock/d'