Bash tips: Unterschied zwischen den Versionen

Aus WikiStar
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „<syntaxhighlight lang="bash" style="font-size:9pt;"> # bash history without numbers history | cut -c 8- history | cut -d' ' -f4- | sed 's/^ \(.*$\)/\1/g' </syn…“)
(kein Unterschied)

Version vom 17. Juni 2014, 15:07 Uhr

# bash history without numbers
history | cut -c 8-
history | cut -d' ' -f4- | sed 's/^ \(.*$\)/\1/g'